-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.example
More file actions
39 lines (36 loc) · 2.34 KB
/
Copy pathenv.example
File metadata and controls
39 lines (36 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Environment Variables Example / Пример переменных окружения
# Copy this file to .env and fill with real values / Скопируйте в .env и заполните реальными значениями
#
# WARNING / ВАЖНО: Never commit .env file! It contains secrets.
# Не коммитьте .env в репозиторий! Содержит секретные данные.
# ==============================================================================
# AI API Key / AI API Ключ
# ==============================================================================
# Key for AI API aggregators (OpenRouter, Azure OpenAI, etc.)
# Used in plugins/utilities/ai/ai_client
#
# Ключ для агрегаторов AI API (OpenRouter, Azure OpenAI и др.)
# Используется в plugins/utilities/ai/ai_client
#
AI_API_KEY=your_ai_api_key_here
# ==============================================================================
# GitHub Token / GitHub Токен
# ==============================================================================
# Only for private repos. Public project — optional (needed if repo URL in core_manager config is private).
# Core Manager (tools/core_manager) uses this for system/utility updates.
#
# Только для приватных репозиториев. Публичный проект — не обязателен (нужен, если в конфиге core_manager указан приватный репозиторий).
#
GITHUB_TOKEN=ghp_your_github_personal_access_token_here
# ==============================================================================
# GitHub Webhook Secret / GitHub Webhook Секрет
# ==============================================================================
# Secret for GitHub webhook signature validation (HMAC SHA256)
# Used in plugins/services/tenant_hub for secure webhook processing
# Must match the secret in GitHub repository webhook settings
#
# Секрет для валидации подписи GitHub вебхуков (HMAC SHA256)
# Используется в plugins/services/tenant_hub для безопасной обработки
# Должен совпадать с секретом в настройках вебхука GitHub репозитория
#
GITHUB_WEBHOOK_SECRET=your_generated_webhook_secret_here_min_32_chars