diff --git a/backend/.env b/backend/.env index 85a173a..9b41864 100644 --- a/backend/.env +++ b/backend/.env @@ -1,4 +1,3 @@ TELEGRAM_BOT_TOKEN=7677506032:AAHduD5EePz3bE23DKlo35KoOp2_9lZuS34 TELEGRAM_CHAT_ID=5057752127 -DATABASE_URL=postgresql://support_user:support_password@postgres:5432/support_db -POSTGRES_PASSWORD=support_password \ No newline at end of file +DATABASE_URL=postgresql://support_user:support_password@postgres:5432/support_db \ No newline at end of file diff --git a/backend/app/bot/config.py b/backend/app/bot/config.py index b34600f..0bb98a9 100644 --- a/backend/app/bot/config.py +++ b/backend/app/bot/config.py @@ -15,6 +15,7 @@ class Settings(BaseSettings): env_file = ".env" env_file_encoding = "utf-8" case_sensitive = True + extra = "ignore" # Allow extra fields in environment # Create settings instance settings = Settings()