diff --git a/site/app.py b/site/app.py index fac5750..0beeaa3 100644 --- a/site/app.py +++ b/site/app.py @@ -12,3 +12,7 @@ app = Flask(__name__) @app.route("/") def index(): return render_template("index.html") + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)