update configs

This commit is contained in:
Egor Svitin
2023-02-07 14:26:43 +03:00
parent 26f8e2dcbb
commit 9042b4e776

View File

@@ -13,7 +13,8 @@ class AppConfig:
connect( connect(
db=CONFIGS['db']['name'], db=CONFIGS['db']['name'],
username=CONFIGS['db']['username'], username=CONFIGS['db']['username'],
password=CONFIGS['db']['password'] password=CONFIGS['db']['password'],
authentication_source='admin',
host="mongodb://{host}:27017/{database}".format(host=CONFIGS['db']['host'], database=CONFIGS['db']['name']) host="mongodb://{host}:27017/{database}".format(host=CONFIGS['db']['host'], database=CONFIGS['db']['name'])
) )