1
0
Fork 0

Add web_runner.py

This commit is contained in:
Eric Lay 2025-05-18 16:54:05 -05:00
parent 07a64b100d
commit 0317e40264
1 changed files with 8 additions and 0 deletions

8
web_runner.py Normal file
View File

@ -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)