diff --git a/app.py b/app.py index 8c27ec75..85683fa8 100644 --- a/app.py +++ b/app.py @@ -9,3 +9,5 @@ @app.route("/") def hello(): return app.send_static_file("index.html") +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)