- Student 1. Chubo Zeko ([email protected])
- Student 2. David Ochia ([email protected])
- Student 3. Hamza Abdalla ([email protected])
- Student 4. Sehrish Khan ([email protected])
Remember to include all required documentation and HOWTOs, including how to create and populate the database, how to run and test the API, the url to the entrypoint and instructions on how to setup and run the client
Last updated: 02/06/2022
PWP/
├── app.py
├── app_dev.py
├── app_dev_db.py
├── home.md
├── meetings.md
├── Procfile
├── README.md
├── requirements.txt
├── setup.py
├── eathelp/
│ ├── __init__.py
│ ├── api.py
│ ├── models.py
│ ├── README.md
│ ├── doc/
│ │ └── eathelp.yaml
│ ├── resources/
│ │ ├── __init__.py
│ │ ├── cookbook.py
│ │ ├── cookbook_recipes.py
│ │ ├── ingredient.py
│ │ ├── recipe.py
│ │ ├── recipe_ingredient.py
│ │ └── user.py
│ ├── db/
│ │ ├── load_database.py
│ │ ├── pwp_db_create.sql
│ │ ├── pwp_db_insert.sql
│ │ ├── README.md
│ │ └── sql/
│ │ ├── pwp_db_dump.sql
│ │ ├── cookbook_recipes/
│ │ │ ├── tbl_cookbook_recipes_create.sql
│ │ │ └── tbl_cookbook_recipes_insert.sql
│ │ ├── cookbook/
│ │ │ ├── tbl_cookbook_create.sql
│ │ │ └── tbl_cookbook_insert.sql
│ │ ├── ingredient/
│ │ │ ├── tbl_ingredient_create.sql
│ │ │ └── tbl_ingredient_insert.sql
│ │ ├── recipe/
│ │ │ ├── tbl_recipe_create.sql
│ │ │ └── tbl_recipe_insert.sql
│ │ ├── recipe-ingredient/
│ │ │ ├── tbl_recipe_ingredient_create.sql
│ │ │ └── tbl_recipe_ingredient_insert.sql
│ │ └── user/
│ │ ├── tbl_user_create.sql
│ │ └── tbl_user_insert.sql
│ └── static/
├── tests/
│ ├── README.md
│ └── dummy_data/
│ └── requests/
└── client/
├── ng-client/
│ └── pwp-client/
│ └── dist/
└── README.md