From 80e114965001f9749f0500896bb13d5b059eaf40 Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:41:13 -0400 Subject: [PATCH] Backend port 5000->8000 --- backend/gunicorn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/gunicorn.py b/backend/gunicorn.py index def4d6e5b..cf57a21e0 100644 --- a/backend/gunicorn.py +++ b/backend/gunicorn.py @@ -1,6 +1,6 @@ import os -bind = "0.0.0.0:5000" +bind = "0.0.0.0:8000" worker_class = "gevent" workers = (os.cpu_count() or 1) * 2 + 1 threads = (os.cpu_count() or 1) * 2 + 1