diff --git a/site/app.py b/site/app.py index 450e651..c5a4ce8 100644 --- a/site/app.py +++ b/site/app.py @@ -40,3 +40,6 @@ def _init_db(): app = create_app() + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000, threaded=True)