From cde2069d7443315ba98824dbbb7578ec4b773fbb Mon Sep 17 00:00:00 2001 From: mguschin Date: Tue, 10 Mar 2026 15:35:53 +0300 Subject: [PATCH] Remove unused VK OAuth env vars (VK_CLIENT_ID/SECRET/SCOPES) VK connection now uses manual community token entry, so OAuth credentials are no longer needed. Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 3 --- web/config.py | 3 --- 2 files changed, 6 deletions(-) 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)