1
0
Fork 0
Browse Source

Merge branch 'unstable' of return-to-ritherdon/midpoint into stable

pull/8/head
Craig Oates 4 years ago committed by Gitea
parent
commit
bd20f7be7d
  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())