This commit is contained in:
MrLening 2025-03-29 18:18:42 +03:00
parent ba42f28bcc
commit 8b70529f5c

View File

@ -24,7 +24,7 @@ def get_logger(filename: str = "/volumes/app/main.log", level: str = "INFO") ->
class Secrets:
bot_token: str = os.getenv("bot_token")
redis_url: str = "redis://redis_telegram_bot:6379"
postgres_url: str = "postgresql+asyncpg://admin:admin@postgres_telegram_bot:5433/postgresdb"
postgres_url: str = "postgresql+asyncpg://admin:admin@postgres_telegram_bot:5432/postgresdb"
SECRETS = Secrets()