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
RequestCounter/bin/conf/config.yml
T

39 lines
643 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-02-25 18:27:40 +08:00
# 可选 'SQLite' /'MySQL'/ -> 暂未开发
type: SQLite
SQLite:
# 数据库的路径,
# 需要从app.py文件所在目录为工作目录
2022-02-23 22:03:39 +08:00
path: "./bin/db/data.db"
2022-02-25 18:27:40 +08:00
# 暂未开发
MySQL:
# 数据库地址
host: "localhost"
# 数据库端口
port: 3306
# 数据库用户
user: "root"
# 数据库密码
password: ""
# 数据库名称
# 如果该数据库不存在则自动创建
db: "requestcounter"
2022-02-23 22:03:39 +08:00