Files
vapemap/app/gunicorn_config
Andrew Williams 572216d10b Vagrant Support
Brings in the basic config for Vagrant, missing elasticsearch but its enough to bring up a Vagrant instance of the main web app.
2013-03-31 23:53:55 +01:00

9 lines
171 B
Python

#!python
from os import environ
from gevent import monkey
monkey.patch_all()
bind = "127.0.0.1:3322"
workers = 8
#worker_class = "gunicorn.workers.ggevent.GeventWorker"