20 lines
618 B
Python
20 lines
618 B
Python
import os
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
bot_token = os.getenv("BOT_TOKEN")
|
|
admins = [367757357, 1617340397, 5899041406]
|
|
|
|
|
|
# Теперь вы можете получить доступ к переменным окружения
|
|
postgres_user = os.getenv('POSTGRES_USER')
|
|
postgres_password = os.getenv('POSTGRES_PASSWORD')
|
|
postgres_db = os.getenv('POSTGRES_DB')
|
|
|
|
# Формируем строку подключения
|
|
DATABASE_URL = f"postgresql+asyncpg://{postgres_user}:{postgres_password}@db:5432/{postgres_db}"
|
|
|
|
shop_api_token = os.getenv("SHOP_API_TOKEN")
|
|
|
|
gpt_api_key = os.getenv("GPT_API_KEY") |