Python Flask Bootstrap Template
All the libraries required for running the app are listed in the requirement.txt file. For installing the app, only run this comand in root path:
$ make install
This is a beginner guide to deploy your first Flask App with Bootstrap.
.
├── app
│ ├── static
│ │ ├── css
│ │ │ └── stile.css
│ │ ├── img : Apps Images
│ ├── templates
│ │ └── index.html
│ ├── app.py : Python Flask APP
│ └── requirements.txt
├── deploy
│ ├── app
│ │ ├── app.env
│ │ └── Dockerfile
│ └── db
│ ├── db.env
│ └── Dockerfile
├── LICENSE Apache 2.0 Licence
├── Makefile
└── README.md