A simple Netflix Clone made using Next.js.
- Node.js (v18.x above is recommended)
- npm - a package manager from Node.js (comes with Node.js).
Install dependencies:
npm installBuild the project by:
npm run buildThe app depends on the NetflixMovieCatalog API service. Thus, you have to run the NetflixMovieCatalog app first and define the service's URL as an env var, as follows:
export MOVIE_CATALOG_SERVICE=http://localhost:8080Start the Netflix Frontend app by:
npm startIn your browser, visit http://localhost:3000 to browse the app.