This repo contains the output files for the Netflix Clone with respect to the React JS Tutorial for Beginners. All credits go to CleverProgrammer YT Channel
LIVE Demonstration: Click Here
- Clone repo on your local system
git clone https://github.com/CrypticMuze/netflix-clone.git
- Open a terminal on your localhost and install the dependencies
npm install
- Create a TMDB account (if you do not already possess one) and generate your personal API key
https://developers.themoviedb.org/3
- Add your personal API key
Goto netflix-clone\netflix-clone\src\requests.js
#In the requests.js file (line 1) make the following changes to the file -->
const API_KEY = ""; # Add your personal API key here
- Open a terminal on your localhost and build the React app.
npm build
- Deploy the production build of the app in the same terminal.
npm run build
You're good to go! Your Netflix Clone should open on the live server.
To contribute to this project:
- Fork this repo
- Make desired changes after cloning it on your local system.
- Generate a pull request.
Note: Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.