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
2022-02-26 13:51:40 +08:00

40 lines
637 B
YAML

servers:
# 服务器建立的地址
host: "0.0.0.0"
# 服务器监听的端口
port: 5000
view:
# 默认显示主题
style: "lewd"
database:
# 数据库类型
# 可选 'SQLite' /'MySQL'/ -> 暂未开发
type: SQLite
SQLite:
# 数据库的路径,
# 需要从app.py文件所在目录为工作目录
path: "./bin/db/data.db"
# 暂未开发
MySQL:
# 数据库地址
host: "127.0.0.1"
# 数据库端口
port: 3306
# 数据库用户
user: "root"
# 数据库密码
password: ""
# 数据库名称
# 如果该数据库不存在则自动创建
db: "reqcount"