mazash/wsgi.py

14 lines
258 B
Python
Raw Normal View History

2020-10-29 16:37:13 +01:00
"""Web Server Gateway Interface"""
##################
# FOR PRODUCTION
####################
from src.app import app
if __name__ == "__main__":
####################
# FOR DEVELOPMENT
####################
app.run(host='0.0.0.0', debug=True)