haldis/app/passenger_wsgi.py

17 lines
361 B
Python
Raw Normal View History

2019-09-11 22:47:06 +02:00
#!/usr/bin/env python3
2019-09-10 15:17:35 +02:00
"Script to run Haldis on a server"
2015-03-31 20:15:22 +02:00
import os
import sys
2019-09-11 22:47:06 +02:00
INTERP = os.path.expanduser("~/env/bin/python3")
2015-03-31 20:15:22 +02:00
if sys.executable != INTERP:
os.execl(INTERP, INTERP, *sys.argv)
sys.path.append(os.getcwd())
2020-07-18 03:54:33 +02:00
from app import app as application
# For running on the server with passenger etc
if __name__ == "__main__":
2019-09-11 22:47:06 +02:00
application.run()