1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

wsgi.py is kind of needed

This commit is contained in:
2016-07-20 16:54:22 +02:00
parent 81e3b93cb5
commit 9260dc7a1e

10
wsgi.py Normal file
View File

@@ -0,0 +1,10 @@
# Activate virtualenv
import settings
activate_this = settings.VENV
execfile(activate_this, dict(__file__=activate_this))
from digimarks import app as application
if __name__ == "__main__":
# application is ran standalone
application.run(debug=settings.DEBUG)