In the Readme, define a REST API for how the webserver affects the model.
Format should be like the following.
/* Users: users contain the information for the people associated with this app */
GET /api/v1/users?{first_name="David"} // Get's a list of all users in this app
GET /api/v1/users/:username // Get's a user by username
...
*/
Some rules,
Prefer underscore
Make sure every top level model has GET, POST, PUT, and DELETE
PUT and POST are different. Post should only ever upload records. PUT should update them.
In the Readme, define a REST API for how the webserver affects the model.
Format should be like the following.
Some rules,