Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 739 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 739 Bytes

Netflix

A simple Netflix Clone made using Next.js.

Prerequisites

  • Node.js (v14.x is recommended)
  • npm - a package manager from Node.js (comes with Node.js).

Running the app

Install dependencies:

npm install

Build the project by:

npm run build

The 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:8080

Start the Netflix Frontend app by:

npm start

In your browser, visit http://localhost:3000 to browse the app.