haldis/app/passenger_wsgi.py

26 lines
665 B
Python
Raw Normal View History

2019-09-11 20:47:06 +00:00
#!/usr/bin/env python3
"""
Used by Zeus in production.
This script makes Haldis acceptable to Phusion Passenger assuming a setup like on Zeus servers.
"""
# pylint: disable=wrong-import-position
2015-03-31 18:15:22 +00:00
import os
import sys
# User has the virtual environment in ~/env/
2019-09-11 20:47:06 +00:00
INTERP = os.path.expanduser("~/env/bin/python3")
2015-03-31 18:15:22 +00:00
if sys.executable != INTERP:
os.execl(INTERP, INTERP, *sys.argv)
sys.path.append(os.getcwd())
# Phusion Passenger expects this file to be called `passenger_wsgi.py`
# and the WSGI object to be called `application`
2020-07-18 01:54:33 +00:00
from app import app as application
# For running on the server with passenger etc
if __name__ == "__main__":
2019-09-11 20:47:06 +00:00
application.run()