Dockerized web app using NGINX, Flask and PostgreSQL
.
├── docker-compose.yml
├── flask
│ ├── config.py
│ ├── Dockerfile
│ ├── manage.py
│ ├── requirements.txt
│ ├── project
│ │ ├── __init__.py
│ │ ├── models
│ │ │ ├── __init__.py
│ │ │ └── db_models.py
│ │ ├── services
│ │ │ └── __init__.py
│ │ ├── static
│ │ │ ├── css
│ │ │ ├── img
│ │ │ └── js
│ │ ├── templates
│ │ │ └── index.html
│ │ └── website
│ │ ├── __init__.py
│ │ └── views.py
│ └── tests
│ ├── base_website.py
│ ├── __init__.py
│ ├── test_configs.py
│ └── test_website.py
├── nginx
│ ├── app.conf
│ ├── Dockerfile
│ └── nginx.conf
├── postgres
│ ├── create.sql
│ └── Dockerfile
└── README.md
- Using Flask Script to run commands while application is running
- Running unit tests with Flask Testing and coverage