add build settings

This commit is contained in:
Egor Svitin
2023-01-30 10:45:26 +03:00
parent aaf98fc65e
commit e50cc762cf
5 changed files with 67 additions and 19 deletions

12
configs/configs.py Normal file
View File

@@ -0,0 +1,12 @@
import os
CONFIGS = {
'db' : {
'name' : os.environ['DB_NAME'],
'host' : os.environ['DB_HOST']
},
'application_credentials' : {
'api_url' : os.environ['API_URL'],
'api_key' : os.environ['API_KEY']
}
}