From 0bbcd6aaa581333e7bfe42a42aaf5404039ff817 Mon Sep 17 00:00:00 2001 From: Kapil Viren Ahuja Date: Thu, 23 Mar 2017 15:43:53 +0530 Subject: Fixed so that we can run the app via docker --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api.py') diff --git a/api.py b/api.py index 3eaafb2..c733649 100644 --- a/api.py +++ b/api.py @@ -59,4 +59,4 @@ def send_assets(path): return send_from_directory("templates/assets", path) if __name__ == "__main__": - app.run(debug=True) + app.run(host="0.0.0.0", port=5000, debug=True) -- cgit v1.3.1