-
Database Configure: Go to /config/app.php and set database settings in Datasources settings
-
Installing dependences
$ composer install
- You need to import the database
bash $ bin/cake migrations migrate
- Now seed the Apps
bash bin/cake migrations seed
- Listing restaurants
GET /restaurants
- Acessing restaurants data
GET /restaurants/{RESTAURANT_ID}
- Retrieving restaurant categories
GET /restaurants/{RESTAURANT_ID}/categories
- Listing restaurant dishes by category
GET /restaurants/{RESTAURANT_ID}/categories/{CATEGORY_ID}
- Listing restaurant dishes
GET /restaurants/{RESTAURANT_ID}/dishes