This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

34 lines
511 B
YAML
Raw Permalink Normal View History

2022-02-23 22:03:39 +08:00
servers:
# 服务器建立的地址
host: "0.0.0.0"
# 服务器监听的端口
port: 5000
2022-02-25 18:27:40 +08:00
view:
# 默认显示主题
style: "lewd"
2022-02-23 22:03:39 +08:00
database:
# 数据库类型
2022-03-02 21:52:08 +08:00
# 可选 'SQLite' 'MySQL'
type: "SQLite"
2022-03-01 00:17:33 +08:00
SQLite:
path: "./bin/db/data.db"
2022-02-25 18:27:40 +08:00
MySQL:
# 数据库地址
2022-02-26 13:51:40 +08:00
host: "127.0.0.1"
2022-02-25 18:27:40 +08:00
# 数据库端口
port: 3306
# 数据库用户
2022-03-01 22:34:11 +08:00
user: ""
2022-02-25 18:27:40 +08:00
# 数据库密码
password: ""
# 数据库名称
# 如果该数据库不存在则自动创建
2022-03-03 21:23:08 +08:00
db: ""
2022-02-25 18:27:40 +08:00
2022-02-23 22:03:39 +08:00