Can you guess the movie based on the cast? That's the hook of Casting ReCall. The game presents you with six cast lineups, and you have ten guesses to get them all!
This game was built using React.js, React Router, JavaScript, HTML, SCSS, and Axios and is currently deployed at https://castingrecall.herokuapp.com
Here is the back end API for this project:
Casting ReCall - Node.js Back End
- Once you have cloned this repository make sure to run
npm i
to install any dependancies you might be missing. - Make sure you download castingcall-server and do the same.
- You will need an api key for The Movie Database, which you can create at their developer site.
To run this project, you will need to add the following environment variables to your .env file.
You will need to provide a TMDB API key.
REACT_APP_TMDB_KEY
={YOUR TMDB KEY GOES HERE}
REACT_APP_TMDB_SEARCH_URL
=https://api.themoviedb.org/3/search/movie?adult=false®ion=US
REACT_APP_TMDB_MOVIE_SEARCH_URL
=https://api.themoviedb.org/3/movie/
REACT_APP_TMDB_GENRE_DETAILS
=https://api.themoviedb.org/3/genre/movie/list
REACT_APP_API_REMOTE_URL
={YOUR DEPLOYMENT HERE}