A front-end application to return information on a movie parsed from the themoviedb.org database.
During work hours this link http://18.221.179.187:3000/ should be working able to take you to the application deployed over AWS.
https://api.themoviedb.org/3/search/movie?api_key=<<API_KEY>>&language=en-US&query=scott&page=1&include_adult=false
- Create a APIKEY.JSX in the root with your API key set to a variable and export it simmilar to
const APIKEY = `y0ur5up3r53cr5tk3y`
export default APIKEY;
- In the CLI run
npm install
- After installation run
npm run build
At this point the index.html file will show the application and work, but to run on the provided server continue - The default port is 3000 if you want a different port add to an .env file
PORT=<<yourport here>>
- In the CLI run
npm run start
Now the application is live on your localhost