Hotfix + config optimization

- Fixed a bug that didn't let any function receive connection objects
- Added uvicorn logging level to config
This commit is contained in:
2025-09-06 01:09:30 +03:00
parent c2dd26c5d3
commit 16eccddb59
7 changed files with 29 additions and 30 deletions

View File

@ -5,8 +5,12 @@ db_name = config('DB_NAME')
postgres_user = config('POSTGRES_USER')
postgres_password = config('POSTGRES_PASSWORD')
host_name = config('HOST_NAME')
port = config('PORT')
logging_level = config('LOGGING_LEVEL')
enable_api_docs = config('ENABLE_API_DOCS', cast=bool)
port = config('PG_PORT')
schema_name = config('SCHEMA_NAME')
table_name = config('TABLE_NAME')
table_name = config('TABLE_NAME')
enable_api_docs = config('ENABLE_API_DOCS', cast=bool)
uvicorn_logging_level = config('UVI_LOGGING_LEVEL')
logging_level = config('LOGGING_LEVEL')