2024-11-12 20:25:43 +08:00
|
|
|
# config/config.toml
|
|
|
|
# 配置文件
|
|
|
|
|
|
|
|
# 信息
|
|
|
|
[info]
|
|
|
|
install = false # 是否为第一次安装
|
|
|
|
non_relational = true # 是否使用非关系型数据库
|
|
|
|
|
2024-11-18 19:14:37 +08:00
|
|
|
# 关系型数据库
|
|
|
|
[sql_config]
|
2024-11-12 20:25:43 +08:00
|
|
|
db_type = "postgresql" # 数据库类型
|
|
|
|
address = "localhost" # 地址
|
2024-11-18 19:14:37 +08:00
|
|
|
port = 5432 # 端口
|
2024-11-12 20:25:43 +08:00
|
|
|
user = "postgres" # 用户名
|
|
|
|
password = "postgres" # 密码
|
|
|
|
db_name = "echoes" # 数据库
|