Skip to content

Latest commit

 

History

History
executable file
·
16 lines (9 loc) · 867 Bytes

File metadata and controls

executable file
·
16 lines (9 loc) · 867 Bytes

Bad Movies

A teaching assignment designed to cover the fundamentals of fullstack

Learn the fundamentals of application structure and database integration by making a webapp which gives you horrible movies to look at based on certain search criteria. The user can then opt to save a movie to their favorites and also delete items they don't like anymore.

Basic functionality (CRUD app minus update functionality):

[ ] Search for movies by genre

[ ] I should be given a list of official genres to choose from

[ ] I expect the movies to be sorted by horrible ratings first (figure out how to modify the API endpoint to do so)

[ ] If I click a movie on the search results, it will save to my favorites (mySQL database, you must make your own Schema)

[ ] If I'm viewing my favorites and click an item, it will remove the item (page should auto update somehow)