mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-13 06:22:16 +00:00
Brings in the basic config for Vagrant, missing elasticsearch but its enough to bring up a Vagrant instance of the main web app.
9 lines
171 B
Python
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"
|