We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3054e commit 110af92Copy full SHA for 110af92
installer/install.conf
@@ -5,6 +5,20 @@ SQLBOT_BASE=/opt
5
SQLBOT_WEB_PORT=8000
6
SQLBOT_MCP_PORT=8001
7
8
+# 数据库配置
9
+## 是否使用外部数据库
10
+SQLBOT_EXTERNAL_DB=false
11
+## 数据库地址
12
+SQLBOT_DB_HOST=localhost
13
+## 数据库端口 (仅使用外部数据库时才生效)
14
+SQLBOT_DB_PORT=5432
15
+## SQLBot 数据库库名
16
+SQLBOT_DB_DB=sqlbot
17
+## 数据库用户名
18
+SQLBOT_DB_USER=root
19
+## 数据库密码,密码如包含特殊字符,请用双引号引起来,例如 SQLBOT_DB_PASSWORD="Test@4&^%*^"
20
+SQLBOT_DB_PASSWORD=Password123@pg
21
+
22
# 其他配置
23
## 普通用户默认密码
24
SQLBOT_DEFAULT_PWD=SQLBot@123456
0 commit comments