├── .flake8 ├── .gitignore ├── README.md ├── backend ├── Dockerfile ├── app │ └── api │ │ ├── __init__.py │ │ ├── routes │ │ ├── __init__.py │ │ └── cleanings.py │ │ └── server.py └── requirements.txt └── docker-compose.yml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/backend/app/api/routes/__init__.py -------------------------------------------------------------------------------- /backend/app/api/routes/cleanings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/backend/app/api/routes/cleanings.py -------------------------------------------------------------------------------- /backend/app/api/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/backend/app/api/server.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jastor11/phresh-tutorial/HEAD/docker-compose.yml --------------------------------------------------------------------------------