Fix for wsgi startup script
This commit is contained in:
parent
2271b0427c
commit
9c00fcc0cf
1 changed files with 2 additions and 1 deletions
|
@ -18,8 +18,9 @@ sys.path.append(os.getcwd())
|
||||||
|
|
||||||
# Phusion Passenger expects this file to be called `passenger_wsgi.py`
|
# Phusion Passenger expects this file to be called `passenger_wsgi.py`
|
||||||
# and the WSGI object to be called `application`
|
# and the WSGI object to be called `application`
|
||||||
from app import app as application
|
from app import create_app
|
||||||
|
|
||||||
# For running on the server with passenger etc
|
# For running on the server with passenger etc
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
application = create_app()
|
||||||
application.run()
|
application.run()
|
||||||
|
|
Loading…
Reference in a new issue