From 0317e402646a53654b69be2bb89212900a8c87c0 Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Sun, 18 May 2025 16:54:05 -0500 Subject: [PATCH] Add web_runner.py --- web_runner.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 web_runner.py diff --git a/web_runner.py b/web_runner.py new file mode 100644 index 0000000..14d8a6d --- /dev/null +++ b/web_runner.py @@ -0,0 +1,8 @@ +# Minimal file just to run the flask threads + +from web_app import appV3 +from config import FLASK_PORT + +if __name__ == "__main__": + print("[FLASK] Starting Flask API on port", FLASK_PORT) + appV3.run(host="0.0.0.0", port=FLASK_PORT)