haldis/app/passenger_wsgi.py
2019-09-12 20:53:25 +02:00

18 lines
384 B
Python

#!/usr/bin/env python3
"Script to run Haldis on a server"
import os
import sys
INTERP = os.path.expanduser("~/env/bin/python3")
if sys.executable != INTERP:
os.execl(INTERP, INTERP, *sys.argv)
sys.path.append(os.getcwd())
from app import create_app
application = create_app().app
# For running on the server with passenger etc
if __name__ == "__main__":
application.run()