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:
@ -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')
|
||||
|
||||
Reference in New Issue
Block a user