View Now Playing, Popular, Trending, and Upcoming Movies. Discover movies by genre, rating, watch provider, and year. View more details about each movie.
- Clone the repo
git clone https://github.com/nightwolfdev/movies.git
- Navigate to the project folder
cd movies
- Install dependencies
npm install
- Run the app
ng serve
- Visit the app in a browser
http://localhost:4200
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
}