-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
69 lines (49 loc) · 1.42 KB
/
.env.example
File metadata and controls
69 lines (49 loc) · 1.42 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
65
66
67
68
69
# ============================================
# Bamboo Base Configuration
# ============================================
# 复制此文件为 .env 并填写实际值
# Copy this file to .env and fill in actual values
# ============================================
# 应用基础配置 (Application Settings)
# ============================================
# 调试模式 (Debug Mode)
# 可选值: true, false, 1, 0, yes, no, on, off
XLF_DEBUG=false
# 监听地址 (Listen Address)
XLF_HOST=0.0.0.0
# 监听端口 (Listen Port)
XLF_PORT=8080
# gRPC 监听端口
GRPC_PORT=1119
# gRPC 反射开关 (true/false)
GRPC_REFLECTION=false
# ============================================
# 数据库配置 (Database Settings) [可选/Optional]
# ============================================
# 数据库主机地址 [必填]
DATABASE_HOST=localhost
# 数据库端口
DATABASE_PORT=3306
# 数据库用户名 [必填]
DATABASE_USER=root
# 数据库密码 [必填]
DATABASE_PASS=your_password
# 数据库名称 [必填]
DATABASE_NAME=bamboo_db
# 数据库表前缀
DATABASE_PREFIX=
# ============================================
# Redis 配置 (Redis Settings) [可选/Optional]
# ============================================
# Redis 主机地址
NOSQL_HOST=localhost
# Redis 端口
NOSQL_PORT=6379
# Redis 用户名 (ACL 模式)
NOSQL_USER=
# Redis 密码
NOSQL_PASS=
# Redis 数据库编号 (0-15)
NOSQL_DATABASE=0
# Redis 键前缀
NOSQL_PREFIX=