初始化

This commit is contained in:
2026-07-03 15:58:29 +08:00
parent 3a942c882e
commit dc90e889e1
77 changed files with 12912 additions and 0 deletions

30
server/config.yaml Normal file
View File

@@ -0,0 +1,30 @@
# =============================================
# 文件管理系统配置
# =============================================
server:
port: 8080
mode: debug
public_url: "http://localhost:5173"
database:
host: 127.0.0.1
port: 3306
username: root
password: "123456"
dbname: seeyon_fs
jwt:
secret: seeyon-filesystem-jwt-secret-key-2024
expiration: 24
storage:
default_policy_id: 1
local_base_path: D:/Seeyon/A8/localfile
cdn_host: "http://localhost:3090"
cdn_path_prefix: "/public"
# 备份工具路径(留空则自动搜索)
backup:
mysqldump_path: "C:/Program Files/MySQL/MySQL Server 8.0/bin/mysqldump.exe"
mysql_path: "C:/Program Files/MySQL/MySQL Server 8.0/bin/mysql.exe"