Ändrade tillbaks till debug=true för Flask

This commit is contained in:
Joakim Persson
2024-07-19 17:18:40 +02:00
parent 66620cc6ca
commit 38c78934a5
+2 -1
View File
@@ -83,7 +83,8 @@ def get_response(user_query):
def run_flask(fport=5005):
# Flask endpoint for user interaction
print(f"Entering run_flask()")
app.run(port = str(str(fport)), debug=False)
# app.run(port = str(str(fport)), debug=False)
app.run(port = str(str(fport)), debug=True)
# app.run(port=5000, debug=True, use_reloader=False)
print(f"Exiting run_flask()")