From 0aadd7f447326ff61f5e6c359984d960ccc21af8 Mon Sep 17 00:00:00 2001 From: akettel Date: Tue, 17 Mar 2026 22:38:25 +0000 Subject: [PATCH] Making the dev server threaded --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 6d124b7..7d867d2 100644 --- a/src/app.py +++ b/src/app.py @@ -52,4 +52,4 @@ def camera_stream() -> Response: if __name__ == "__main__": - app.run(host="0.0.0.0", port=5000, debug=True) + app.run(host="0.0.0.0", port=5000, debug=True, threaded=True)