rename wsgi.py

This commit is contained in:
Rohit Tanwar
2018-02-18 11:30:30 +05:30
parent 647e2d6b3d
commit 2cd1349f2a

6
website/run.py Normal file
View File

@ -0,0 +1,6 @@
from app import app
if __name__ == '__main__':
app.jinja_env.auto_reload = True
app.config['TEMPLATES_AUTO_RELOAD'] = True
app.run(debug=True, host='0.0.0.0',port=80)