JavaScript application that manages movies in a database.
- Clone this repo
npm install
to install all required dependenciesnpm start
to 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.json
and changeapiUrl
to match the server's url. - Comment out the import statements for
fakeGenreService
andfakeMovieService
insrc/components/containers/Movies/Movies.jsx
and uncomment the ones forgenreService
andmovieService
. - Repeat the previous step in
src/components/containers/MovieForm/MovieForm.jsx
as 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