Files
30-seconds-of-code/website/wsgi.py
Rohit Tanwar 098dd6fba8 'website'
2018-02-17 19:36:24 +05:30

6 lines
179 B
Python

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)