Customized flask project template with pre configured flask login, flask admin, flask auth, flask api
To whom may be interest to collaborate in this project this will be the steps
just pull the repository git pull https://github.com/alejandromorrison/flask_template.git
and then use python install requirements.txt
Flask Project Template
Hey! This is a custom flask project template with reconfigured flask plugins.
Plugins
- flask restless
- flask httpauth
- flask login
- flask sqlalchemy
Project Structure
project
│ .gitignore
│ config.py
│ requirements.txt
│ run.py
│
├───app
│ │ __init__.py
│ │
│ ├───main_module
│ │ admin.py
│ │ api.py
│ │ auth.py
│ │ auth_routes.py
│ │ models.py
│ │ populate_db.py
│ │ routes.py
│ │ __init__.py
│ │
│ ├───static
│ ├───templates
│ │ │ index_.html
│ │ │
│ │ ├───admin
│ │ │ your template.html
│ │ │
│ │ ├───authentication
│ │ │ login.html
│ │ │
│ │ └───base
│ │ master.html
│ │