updated configs

This commit is contained in:
2025-03-25 11:42:30 +03:00
parent 31f01e8e01
commit 144b0f37d0
4 changed files with 4 additions and 4 deletions

View File

@@ -6,5 +6,5 @@ class MongoConfig:
USER_NAME = "mongo_user"
DATABASE_NAME = "mongo_database"
HOST = HostConfig.MAIN_HOST
PORT = 11777
PORT = 11112
URL = f"mongodb://{USER_NAME}:{PASSWORD}@{HOST}:{PORT}/{DATABASE_NAME}?retryWrites=true&w=majority"