This is a project developed in Python & Flask, for a restaurant, to shows the menus and allows CRUD operations.
CRUD: Create, Read, Update & Delete
All file for the GitHub pages site reside in the project folder:
| Folder | Contains |
|---|---|
| static | All static data as: javascript (.js), style sheets (.css), and images (.png) files |
| templates | All .html templates |
- Fork the project in a local folder in your computer.
- Run the app: open the
Terminal, go to the folder in which the downloaded information is located, and use the following command:
$ python restaurant.py
Python 3
This app has been developed
The DataBase design is:
| Field | Description |
|---|---|
| id | unique key identifier |
| name | restaurant name |
| Field | Description |
|---|---|
| id | unique key identifier |
| name | item name |
| price | item price |
| description | item description |
| course | categorize whether it is it is an appetizer, entree, dessert or beverage |
| restaurant_id | foreign key, from restaurant id |
