mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 20:55:10 +01:00
wsgi.py is kind of needed
This commit is contained in:
10
wsgi.py
Normal file
10
wsgi.py
Normal 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)
|
||||
Reference in New Issue
Block a user