1
0
Fork 0
Browse Source

update requirements in proj-env.

pull/1/head
Craig Oates 4 years ago
parent
commit
2d6ba68682
  1. 10
      proj-env/bin/gunicorn

10
proj-env/bin/gunicorn vendored

@ -0,0 +1,10 @@
#!/mnt/dev-shed/midpoint/proj-env/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from gunicorn.app.wsgiapp import run
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(run())