Base Python API for a series of on-going "Learn" projects in various front-end frameworks.
npm install recipes-appBase Python API for a series of on-going recipe learning projects in various front-end frameworks.
* React.js;
* Ember.js;
* Angular.js;
* Meteor.js;
Read:
``shell`
curl -i http://localhost:5000/recipes
-X GET
Create:
`shell`
curl -i http://localhost:5000/recipes
-X POST
-H "Content-Type: application/json"
-d '{"name":"Banana Cake","description":"Delectable banana cake!","ingredients":["Banana","Flour"]}'
Delete:
Assume that 123456789 is the model's primary key in MongoDB.
`shell``
curl -i http://localhost:5000/recipes/123456789
-X DELETE