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.

288 B

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