-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
49 lines (41 loc) · 1.47 KB
/
env.example
File metadata and controls
49 lines (41 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
# PostgreSQL
POSTGRES_USER=mentormatch
POSTGRES_PASSWORD=secret
POSTGRES_DB=mentormatch
POSTGRES_PORT=5432
POSTGRES_HOST=postgres
DATABASE_URL=postgresql://mentormatch:secret@postgres:5432/mentormatch
# Optional: PGAdmin
PGADMIN_EMAIL=admin@example.com
PGADMIN_PASSWORD=admin
PGADMIN_PORT=8080
# Server
PROXY_API_KEY=your_proxy_api_key_here
PROXY_BASE_URL=https://api.proxyapi.ru/openai/v1
PROXY_MODEL=gpt-4o-mini
SERVER_URL=http://localhost:8000
BOT_API_URL=http://bot:5000 # внутренний HTTP-API бота для уведомлений
# Telegram Bot
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# Optional Telegram network tuning (timeouts in seconds)
# TELEGRAM_CONNECT_TIMEOUT=15
# TELEGRAM_READ_TIMEOUT=30
# TELEGRAM_WRITE_TIMEOUT=30
# TELEGRAM_POOL_TIMEOUT=5
# TELEGRAM_POOL_SIZE=4
# TELEGRAM_PROXY_URL=socks5://user:pass@proxy:1080
# TELEGRAM_PROXY_USER=
# TELEGRAM_PROXY_PASSWORD=
# BOT_HTTP_PORT=5000 # порт внутреннего HTTP-API (опционально)
# Примечание: В Docker контейнере бот использует SERVER_URL=http://server:8000
# Google Sheets Integration
SPREADSHEET_ID=your_spreadsheet_id_here
SERVICE_ACCOUNT_FILE=service-account.json
# ID таблицы для экспорта пар «Тема–Роль–Студент–Руководитель»
PAIRS_SPREADSHEET_ID=
# AI/OpenAI Configuration
# Logging
LOG_LEVEL=INFO
LOG_FILE=mentormatch.log
# Test data import on startup (true/false)
TEST_IMPORT=false