mirror of
https://github.com/norohind/ED-livery-tracker-advanced.git
synced 2025-04-13 15:57:16 +03:00
8 lines
240 B
Python
8 lines
240 B
Python
import os
|
|
|
|
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')
|