Version: 0.4.0.dev.260302.hotfix
修复了刚刚没有让git停止追踪此文件,使得文件依然被上传的问题
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -12,7 +12,8 @@
|
|||||||
# 3. 配置文件与敏感信息 (Security & Configs)
|
# 3. 配置文件与敏感信息 (Security & Configs)
|
||||||
# 绝对不要提交包含数据库密码和 Kafka 地址的配置文件
|
# 绝对不要提交包含数据库密码和 Kafka 地址的配置文件
|
||||||
.env
|
.env
|
||||||
config.yaml
|
*.yaml
|
||||||
|
!config.example.yaml # 可以提交示例配置文件,供其他开发者参考
|
||||||
|
|
||||||
# 4. 临时文件与日志 (Logs & Temp)
|
# 4. 临时文件与日志 (Logs & Temp)
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
# 应用配置文件示例
|
|
||||||
# 包含服务器、数据库等基础配置
|
|
||||||
# 请根据实际情况修改并保存为 config.yaml
|
|
||||||
|
|
||||||
server:
|
|
||||||
port: 8080
|
|
||||||
mode: debug
|
|
||||||
timeout: 30s
|
|
||||||
|
|
||||||
database:
|
|
||||||
host: localhost
|
|
||||||
port: 3306
|
|
||||||
user: smartflow_user
|
|
||||||
password: "put_your_database_password_here"
|
|
||||||
dbname: "put_your_database_name_here"
|
|
||||||
charset: utf8mb4
|
|
||||||
parseTime: true
|
|
||||||
loc: Local
|
|
||||||
|
|
||||||
jwt:
|
|
||||||
accessSecret: "put_your_jwt_access_secret_here"
|
|
||||||
refreshSecret: "put_your_jwt_refresh_secret_here"
|
|
||||||
accessTokenExpire: 15min
|
|
||||||
refreshTokenExpire: 7d
|
|
||||||
|
|
||||||
log:
|
|
||||||
level: info
|
|
||||||
path: logs/
|
|
||||||
|
|
||||||
redis:
|
|
||||||
host: localhost
|
|
||||||
port: 6379
|
|
||||||
password: ""
|
|
||||||
db: 0
|
|
||||||
|
|
||||||
time:
|
|
||||||
zone: "Asia/Shanghai"
|
|
||||||
semesterStartDate: "2026-03-02" #学期开始日期,一定要设定为周一,以便于计算周数
|
|
||||||
semesterEndDate: "2026-07-19" #学期结束日期,一定要设定为周日,确保最后一周完整
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
# 应用配置文件
|
|
||||||
# 包含服务器、数据库等基础配置
|
|
||||||
|
|
||||||
server:
|
|
||||||
port: 8080
|
|
||||||
mode: debug
|
|
||||||
timeout: 30s
|
|
||||||
|
|
||||||
database:
|
|
||||||
host: localhost
|
|
||||||
port: 3306
|
|
||||||
user: smartflow_user
|
|
||||||
password: "smartflow_password_456"
|
|
||||||
dbname: "smartflow"
|
|
||||||
charset: utf8mb4
|
|
||||||
parseTime: true
|
|
||||||
loc: Local
|
|
||||||
|
|
||||||
jwt:
|
|
||||||
accessSecret: "smartflow_jwt_access_secret_123"
|
|
||||||
refreshSecret: "smartflow_jwt_refresh_secret_123"
|
|
||||||
accessTokenExpire: 15min
|
|
||||||
refreshTokenExpire: 7d
|
|
||||||
|
|
||||||
log:
|
|
||||||
level: info
|
|
||||||
path: logs/
|
|
||||||
|
|
||||||
redis:
|
|
||||||
host: localhost
|
|
||||||
port: 6379
|
|
||||||
password: ""
|
|
||||||
db: 0
|
|
||||||
|
|
||||||
time:
|
|
||||||
zone: "Asia/Shanghai"
|
|
||||||
semesterStartDate: "2026-03-02" #学期开始日期,一定要设定为周一,以便于计算周数
|
|
||||||
semesterEndDate: "2026-07-19" #学期结束日期,一定要设定为周日,确保最后一周完整
|
|
||||||
|
|
||||||
agent:
|
|
||||||
workerModel: "doubao-seed-1-6-lite-251015" # 智能体使用的Worker模型,需根据实际情况调整
|
|
||||||
strategistModel: "deepseek-v3-2-251201" # 策略师使用的Worker模型,需根据实际情况调整
|
|
||||||
baseURL: "https://ark.cn-beijing.volces.com/api/v3" # Worker服务的基础URL,需根据实际情况调整
|
|
||||||
Reference in New Issue
Block a user