JavaScript application that manages movies in a database.
- Clone this repo
npm installto install all required dependenciesnpm startto start the local server
Other commands can be found in package.json (this project uses create-react-app)
While the application is able to fake API calls, the source code for a backend server can be found in the MoviemoApi repo.
To configure the application to use the API server:
- Edit
src/config.jsonand changeapiUrlto match the server's url. - Comment out the import statements for
fakeGenreServiceandfakeMovieServiceinsrc/components/containers/Movies/Movies.jsxand uncomment the ones forgenreServiceandmovieService. - Repeat the previous step in
src/components/containers/MovieForm/MovieForm.jsxas well.
This application manages movies in a database. It uses an ASP.NET Core Web API backend for all requests.
General functionality:
- Add, edit, and delete movies
- Retrieve and display movies in a paginated list
- Search for movies by title
- Sort movies by genre