Yup at least two:
- Browse data about movie, tv shows and people related to movie industry
- Check Top 100 movies or tv shows
- Discover upcoming movie releases
- Search about movies, series or people that interest you
Or maybe just look what's currently trending.
1. Create free account at www.themoviedb.org
git clone https://github.com/Arrugonoto/moviedb.git
cd src/services
touch api-key.ts
4. Paste following configuration in newly created file and iclude Your TheMovieDatabase key with token
export const API_KEY: { key: string, access_token: string } = {
key: 'TMDB key',
access_token:
'TMDB access token',
};
Note: this file is excluded from git tracking so data contained in it won't be updated to github repository. Never publicly update any of Yours access tokens. Good alternative to store them is to use .env environment variables.
npm install
npm run dev