### To Start the DB.

`make db-start`

### To Initialize the DB

`make db-init`

### To Delete the DB

`make db-wipe`

### To Start API

`npm start`

### To Start API and Watch Changes

`npm run dev`

## CRUD operations convention

| Contex             | Controller | Action | Query Function |
| ------------------ | ---------- | ------ | -------------- |
| Creating Something | post       | create | insert         |
| Reading Some Data  | get        | fetch  | select         |
| Update Some Data   | put        | modify | update         |
| Deleting Some Data | delete     | remove | delete         |

[CyprusCodes.com](http://www.cypruscodes.com)
