From 5ee8419c7c914170eff8e5bc5a02d099e55be67c Mon Sep 17 00:00:00 2001 From: mguschin Date: Mon, 9 Mar 2026 17:23:50 +0300 Subject: [PATCH] Replace EVOTOR_CLIENT_ID/SECRET with EVOTOR_APP_ID/WEBHOOK_SECRET in config Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 3 +++ docker-compose.yml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index c87fc25..db8716b 100644 --- a/.env.example +++ b/.env.example @@ -5,6 +5,9 @@ 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/docker-compose.yml b/docker-compose.yml index 9c34e5c..58fc589 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,8 +11,8 @@ services: - DATABASE_URL=mysql+pymysql://${DB_USER}:${DB_PASSWORD}@host.docker.internal:3306/${DB_NAME} - SECRET_KEY=${SECRET_KEY:-change-me-in-production} - BASE_URL=${BASE_URL:-https://evosync.ru} - - EVOTOR_CLIENT_ID=${EVOTOR_CLIENT_ID} - - EVOTOR_CLIENT_SECRET=${EVOTOR_CLIENT_SECRET} + - EVOTOR_APP_ID=${EVOTOR_APP_ID} + - EVOTOR_WEBHOOK_SECRET=${EVOTOR_WEBHOOK_SECRET} - VK_CLIENT_ID=${VK_CLIENT_ID} - VK_CLIENT_SECRET=${VK_CLIENT_SECRET} volumes: