-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 1005 Bytes
/
Copy path.env.example
File metadata and controls
39 lines (32 loc) · 1005 Bytes
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
# ===========================================
# DevLog Docker Compose Environment Variables
# ===========================================
# Copy this file to .env and modify the values
# Database Configuration
DB_USER=devlog
DB_PASSWORD=your_secure_password_here
DB_NAME=devlog
# Server Configuration
GIN_MODE=release
# JWT Secret (CHANGE THIS IN PRODUCTION!)
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# AI Configuration
# Provider: "openai", "gemini", "ollama", "dashscope"
AI_PROVIDER=dashscope
AI_API_KEY=your_ai_api_key_here
AI_MODEL=qwen-turbo
# Alibaba Cloud OSS Configuration (Optional)
OSS_ENDPOINT=oss-cn-hangzhou.aliyuncs.com
OSS_ACCESS_KEY_ID=
OSS_ACCESS_KEY_SECRET=
OSS_BUCKET_NAME=
OSS_BASE_URL=
# SEO Configuration (Optional)
SEO_SITE_URL=https://your-domain.com
SEO_BAIDU_SITE=your-domain.com
SEO_BAIDU_TOKEN=
SEO_BING_API_KEY=
SEO_PUSH_INTERVAL=24h
# Frontend Configuration
# Use your actual domain or IP in production
VITE_API_BASE_URL=http://localhost:8080/api/v1