-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (52 loc) · 1.26 KB
/
.env.example
File metadata and controls
64 lines (52 loc) · 1.26 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
54
55
56
57
58
59
60
61
62
63
64
# Project Configuration
PROJECT_NAME=nexquery-ai
STACK_NAME=nexquery-ai
# Backend
NODE_ENV=development
APP_KEY=
PORT=3008
HOST=0.0.0.0
LOG_LEVEL=info
FRONTEND_URL=http://localhost:3000
# Database
# For Local/Host Dev: 127.0.0.1
# For Docker Profile: "db" (overridden in docker-compose.yml)
DB_HOST=127.0.0.1
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=root123
DB_DATABASE=nexquery_ai
# Mailcatcher / SMTP
# For Local/Host Dev: 127.0.0.1
# For Docker Profile: "mailcatcher" (overridden in docker-compose.yml)
SMTP_HOST=127.0.0.1
SMTP_PORT=1025
SMTP_USERNAME=
SMTP_PASSWORD=
# Frontend
VITE_API_URL=http://localhost:3008
VITE_PORT=3000
# API Encryption
API_ENCRYPTION_ENABLED=true
API_ENCRYPTION_KEY=12345678901234567890123456789012
# Timezone
TZ=Asia/Shanghai
# Ngrok
NGROK_AUTHTOKEN=
# LangChain Monitoring (LangFuse)
LANGFUSE_PUBLIC_KEY=
LANGFUSE_SECRET_KEY=
LANGFUSE_HOST=https://cloud.langfuse.com
# Vector Database (Qdrant)
# For Docker environment: use "qdrant" (via docker-compose override)
# For Local environment: use "127.0.0.1"
QDRANT_HOST=127.0.0.1
QDRANT_PORT=6333
QDRANT_API_KEY=
# WeChat Mini Program
WECHAT_APP_ID=your_wechat_app_id
WECHAT_APP_SECRET=your_wechat_app_secret
# ELK Stack Credentials
ELASTIC_PASSWORD=nexquery_secure_pwd
# Cache
CACHE_DRIVER=memory