Best Flask open-source libraries and packages

Dockerized Flask

Dockerized web app using NGINX, Flask and PostgreSQL
Updated 2 months ago

logo

Dockerized web app template using NGINX, Flask, and PostgreSQL.

Travis

.
├── LICENSE
├── README.md
├── docker-compose.yml
├── dockerized_logo.png
├── flask
│   ├── Dockerfile
│   ├── config.py
│   ├── manage.py
│   ├── project
│   │   ├── __init__.py
│   │   ├── controllers
│   │   │   ├── __init__.py
│   │   │   └── routes.py
│   │   ├── models
│   │   │   ├── __init__.py
│   │   │   └── names.py
│   │   ├── static
│   │   │   ├── css
│   │   │   ├── img
│   │   │   └── js
│   │   └── templates
│   │       └── index.html
│   ├── requirements.txt
│   └── tests
│       ├── __init__.py
│       ├── test_configs.py
│       └── test_website.py
├── nginx
│   ├── Dockerfile
│   ├── app.conf
│   └── nginx.conf
└── postgres
    ├── Dockerfile
    └── create.sql

Installation

Flask

Docker

Other