Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.12 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.12 KB

Movies

Movies App

View Now Playing, Popular, Trending, and Upcoming Movies. Discover movies by genre, rating, watch provider, and year. View more details about each movie.

Getting Started

  1. Clone the repo
    git clone https://github.com/nightwolfdev/movies.git
  2. Navigate to the project folder
    cd movies
  3. Install dependencies
    npm install
  4. Run the app
    ng serve
  5. Visit the app in a browser
    http://localhost:4200

API Key

In order to make a valid API request, an API key is required. Learn more

Once you have acquired an API key, create a file called api.ts in the environments folder with the following, replacing YOUR_API_KEY with your actual key:

const host = 'https://api.themoviedb.org/3';
const key = 'YOUR_API_KEY';

export {
  host,
  key
}

Links