diff --git a/.env.example b/.env.example index db8716b..c87fc25 100644 --- a/.env.example +++ b/.env.example @@ -5,9 +5,6 @@ BASE_URL=http://localhost:8000 EVOTOR_APP_ID=your-evotor-app-id EVOTOR_WEBHOOK_SECRET=your-webhook-secret -VK_CLIENT_ID=your-vk-client-id -VK_CLIENT_SECRET=your-vk-client-secret - DB_ROOT_PASSWORD=rootpass DB_NAME=evosync DB_USER=evosync diff --git a/web/config.py b/web/config.py index 729d3d7..2e6d99d 100644 --- a/web/config.py +++ b/web/config.py @@ -15,9 +15,6 @@ class Settings(BaseSettings): HEALTH_CHECK_INTERVAL_SECONDS: int = 600 CATALOG_REFRESH_INTERVAL_SECONDS: int = 3600 - VK_CLIENT_ID: str = "" - VK_CLIENT_SECRET: str = "" - VK_SCOPES: str = "market groups offline" VK_API_VERSION: str = "5.131" # Docker compose vars (ignored in app, kept for env compatibility)