mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-17 23:18:20 +00:00
fix: Fix the issue of invalid port settings (#1351)
This commit is contained in:
@@ -25,7 +25,7 @@ class Config(metaclass=Singleton):
|
||||
|
||||
# Gradio language version: en, zh
|
||||
self.LANGUAGE = os.getenv("LANGUAGE", "en")
|
||||
self.WEB_SERVER_PORT = int(os.getenv("WEB_SERVER_PORT", 7860))
|
||||
self.WEB_SERVER_PORT = int(os.getenv("WEB_SERVER_PORT", 5000))
|
||||
|
||||
self.debug_mode = False
|
||||
self.skip_reprompt = False
|
||||
|
Reference in New Issue
Block a user