Add web_runner.py
This commit is contained in:
parent
07a64b100d
commit
0317e40264
|
@ -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)
|
Loading…
Reference in New Issue