Allow any host name

This commit is contained in:
Jeffrey Linwood
2017-06-05 12:13:27 -05:00
parent c3874a3d1c
commit 4df49f9bc3

2
app.py
View File

@@ -140,4 +140,4 @@ def static_file(path):
return app.send_static_file(path) return app.send_static_file(path)
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True) app.run(debug=True, host='0.0.0.0')