Skip to content

chubozeko/PWP

 
 

Repository files navigation

PWP SPRING 2022

PROJECT NAME

Group information

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


Project Layout

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

Languages

  • Python 100.0%