初始化项目

This commit is contained in:
2026-08-06 15:19:45 +08:00
commit 63c8d8b757
229 changed files with 12653 additions and 0 deletions
@@ -0,0 +1,18 @@
# 存储配置
storage:
# 存储类型[file|s3](并且需要引入对应的jar包)
type: ${STORAGE_TYPE:file}
# 文件类型
file:
# 文件存储路径
path: ${STORAGE_FILE_PATH:/data/xtools/file}
# S3类型
s3:
# 服务类型(可为空)[rustfs]
server: ${STORAGE_S3_SERVER:rustfs}
# 地址
host: ${STORAGE_S3_HOST:http://127.0.0.1:9000}
# 密钥ID
accessKeyId: ${STORAGE_S3_ACCESS_KEY_ID:admin}
# 密钥
secretAccessKey: ${STORAGE_S3_SECRET_ACCESS_KEY:123456}