Merge pull request #24 from TwilioDevEd/allow-any-host-name

Allow any host name
This commit is contained in:
Jeff Linwood
2017-06-05 12:13:56 -05:00
committed by GitHub

2
app.py
View File

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