flaskstrap

Easily create a flask, nginx, uwsgi and bootstrap project ready for deployment

OTHER License

Downloads
95
Stars
2
Committers
2

flaskstrap

flaskstrap sets up a new skeleton flask project and helps you get up and running live just with a few commands

Install

pip install flaskstrap

Example

$ mkvirtualenv new_project

$ pip install flaskstrap

$ flaskstrap init new_project

$ tree new_project

new_project/
├── makefile
├── requirements.txt
├── src
│   ├── __main__.py
│   └── new_project.py
└── tests
    └── unit-tests.py

Usage

flaskstrap init <project_name>

Create a new flask project called project_name

flaskstrap setup

Sets up a new server fully configured with nginx+uwsgi+pm2 to run your application