- Run
npm install
- Run
npm run start
- Visit
localhost:3000
. Notice the routes set up inApp.js
. These routes must be retained as the app is developed.
- Navigate to the
transformApp
directory:cd transformApp
- Install the necessary python packages:
pip3 install -r requirements.txt
- Start up the API:
python3 api.py
There are 2 main routes to the JS app:
- Root
/
: This should display a list of movies available - Movie detail
/movie/${id}
: This displays details of the movie that matchesid
src
- Contains the react app and all its componentstransformApp
- Contains the python API