Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/logileifs/flaskstrap

Easily create a flask, nginx, uwsgi and bootstrap project ready for deployment
https://github.com/logileifs/flaskstrap

flask nginx uwsgi

Last synced: 3 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
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