Skip to content

Commit

Permalink
Backend port 5000->8000
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Sep 25, 2024
1 parent 2926737 commit 80e1149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/gunicorn.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 80e1149

Please sign in to comment.