From ae2568c1873a2e25d038b8bed83cde099876995c Mon Sep 17 00:00:00 2001 From: Kavalar Date: Wed, 22 Mar 2023 18:30:22 +0300 Subject: [PATCH] fix port --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4a15d0d..5496b79 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,7 @@ from daemon.SimpleDaemon import Daemon class CdnServerDaemon(Daemon): def run(self): - uvicorn.run("server:app", port=5000, log_level="info") + uvicorn.run("server:app", port=5023, log_level="info") # Press the green button in the gutter to run the script.