Tactical Watermarks — Depricated
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Castro0o e375844ee9 stopped tracking .pyc files 4 years ago
app stopped tracking .pyc files 4 years ago
.gitignore essetial requirements.txt 4 years ago
README.md essetial requirements.txt 4 years ago
config.py first deployment 4 years ago
file.db first deployment 4 years ago
gunicorn_run.sh first deployment 4 years ago
requirements.txt essetial requirements.txt 4 years ago
run.py first deployment 4 years ago
wsgi.py first deployment 4 years ago

README.md

Run

in Development

export FLASK_APP=run.py export FLASK_ENV=development flask run

in production

gunicorn -w 4 -b 127.0.0.1:5000 app:app

  • -w workers
  • -b bind to address / unix socker

or using unix sock: gunicorn --workers 4 --bind unix:app.sock -m 007 wsgi:app