This repository was archived by the owner on Dec 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
53 lines (44 loc) · 1.66 KB
/
env.example
File metadata and controls
53 lines (44 loc) · 1.66 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
50
51
52
53
# Toolbox.io Environment Configuration
# Copy this file to .env and fill in your actual values
# ===========================================
# Database Configuration
# ===========================================
DB_PASSWORD=your_secure_database_password_here
DB_NAME=toolbox_db
DB_USER=toolbox_user
DB_HOST=localhost
DB_PORT=3306
# ===========================================
# Security & Authentication
# ===========================================
SECRET_KEY=your_jwt_secret_key_here_minimum_32_characters
# ===========================================
# Email Configuration (Mail.ru SMTP)
# ===========================================
SMTP_PASSWORD=your_smtp_password_here
# ===========================================
# External API Keys
# ===========================================
# OpenAI API Key (for support chat)
OPENAI_API_KEY=your_openai_api_key_here
# GitHub App Configuration (for issue reporting)
GITHUB_APP_ID=your_github_app_id_here
GITHUB_INSTALLATION_ID=your_github_installation_id_here
GITHUB_PRIVATE_KEY=your_github_private_key_here
GITHUB_API_VERSION=2022-11-28
# ===========================================
# Bot Configuration
# ===========================================
# Internal bot token for API authentication
INTERNAL_BOT_TOKEN=your_internal_bot_token_here
# Telegram Bot Token (for Telegram support bot)
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# ===========================================
# Development & Debug
# ===========================================
DEBUG=false
# ===========================================
# API Configuration
# ===========================================
# Base URL for internal API communication
API_BASE_URL=http://main:8000