mazash/wsgi.py

14 lines
258 B
Python

"""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)