mirror of
https://github.com/norohind/SquadsActivityMonitor.git
synced 2025-04-04 17:30:01 +03:00
22 lines
730 B
Python
22 lines
730 B
Python
import os
|
|
|
|
cache_disabled: bool = os.getenv('CACHE_DISABLED', 'True').lower() == 'true'
|
|
|
|
postgres_username = os.getenv('DB_USERNAME')
|
|
postgres_password = os.getenv('DB_PASSWORD')
|
|
postgres_hostname = os.getenv('DB_HOSTNAME')
|
|
postgres_port = os.getenv('DB_PORT')
|
|
postgres_database_name = os.getenv('DB_DATABASE')
|
|
|
|
model_cache_db_path = os.getenv('CACHE_PATH', 'squads_stat_cache.sqlite3')
|
|
|
|
sqlite_db_path = os.getenv('SQLITE_DB_PATH', 'squads_stat.sqlite3')
|
|
|
|
log_level = os.getenv('LOG_LEVEL', 'DEBUG').upper()
|
|
|
|
time_between_requests = os.getenv("TIME_BETWEEN_REQUESTS")
|
|
|
|
sqlite2postgres_sqlite_location = os.getenv('SQLITE2POSTGRES_SQLITE_LOCATION')
|
|
|
|
discord_hook_url_1 = os.getenv('DISCORD_HOOK_URL_1', None)
|