Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 months ago
JSON representation
Easily create a flask, nginx, uwsgi and bootstrap project ready for deployment
- Host: GitHub
- URL: https://github.com/logileifs/flaskstrap
- Owner: logileifs
- License: other
- Created: 2017-03-13T15:55:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T21:54:19.000Z (almost 3 years ago)
- Last Synced: 2024-10-01T10:23:19.716Z (4 months ago)
- Topics: flask, nginx, uwsgi
- Language: Python
- Homepage:
- Size: 8.66 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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