You've been hired to build out ScreenViews, a website dedicated to rating shows and movies. While the backend server has been created, you'll need to build the entire frontend on your own. Don't worry, with your new React knowledge you'll be able to create a fantastic web application!
-
Fork and clone this repository.
-
Navigate to the cloned repository's directory on your command line. Then, run the following command:
npm install
You will be running your own local server on your machine. Follow the instructions at the link below to get it up and running.
Data sourced from Kaggle.
In class, create the following routes:
/
home/shows
shows index/shows/new
shows new form/shows/:id
shows show one/shows/:id/edit
shows edit form
On your own, create the following routes:
/movies
movies index/movies/new
movies new form/movies/:id
movies show one/movies/:id/edit
movies edit form
In class, create the following functionality:
- As a user, I can see an index (list) of shows
- As a user, I can get an error message if the application is not connected to the server
- As a user, I can click on a show from the index and see a detailed view
- As a user, I can delete a show
- As a user, I can create a show
- As a user, I can edit a show
- As a user I can search the list of shows
On your own, create the following routes:
- As a user, I can see an index (list) of movies
- As a user, I can get an error message if the application is not connected to the server
- As a user, I can click on a movie from the index and see a detailed view
- As a user, I can delete a movie
- As a user, I can create a movie
- As a user, I can edit a movie
- As a user I can search the list of movies