backend for a recipe api (OpenClassroom)
- npm install
- nodemon
- GET /api/recipes — returns all recipes in database
- GET /api/recipes/:id — returns the recipe with the provided ID from the database
- POST /api/recipes — adds a new recipe to the database
- PUT /api/recipes/:id — modifies the recipe with the provided ID
- DELETE /api/recipes/:id — deletes the recipe with the provided ID
The front end app has already been built, and can be pulled from the following repo: https://github.com/OpenClassrooms-Student-Center/5614116-go-fullstack-recipe-frontend.git
npm install , and then ng serve (requires the Angular CLI).