Files
FileRelay/.gitignore
hxuanyu fe656fb298 新增配置管理功能及多存储支持
- 添加管理员端 API,用于获取和更新完整配置。
- 添加公共端 API,用于获取非敏感配置信息。
- 增加本地存储(LocalStorage)、S3(S3Storage)、和 WebDAV(WebDAVStorage)存储类型的实现。
- 支持热更新存储配置和保存配置文件至磁盘。
- 更新 Swagger 文档以包含新接口定义。
2026-01-14 14:15:20 +08:00

85 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# =========================
# Go 常用 .gitignore
# =========================
# 编译产物 / 可执行文件
*.exe
*.exe~
*.dll
*.so
*.dylib
*.a
*.o
*.out
*.test
*.prof
*.pprof
*.cover
*.cov
*.trace
# Go workspace / 依赖缓存(本地开发常见,不建议入库)
/bin/
/pkg/
/dist/
/build/
/out/
# Go build cache通常不需要忽略如你有需要可开启
# /tmp/
# /cache/
# 调试/日志/临时文件
*.log
*.tmp
*.swp
*.swo
*.bak
*.old
*.pid
# 运行时数据/本地数据
*.db
*.sqlite
*.sqlite3
data/
tmp/
# 环境变量与配置(按需:如果你会提交示例配置,建议仅忽略真实配置文件)
.env
.env.*
!.env.example
config.local.*
*.local.yaml
*.local.yml
*.local.json
# Go 测试覆盖率
coverage.out
cover.out
# vendorGo Modules 通常不提交 vendor如你需要 vendor 则删除这一行)
/vendor/
# 工具生成文件
*.gen.go
# IDE / 编辑器
.idea/
.vscode/
*.code-workspace
# macOS / Windows
.DS_Store
Thumbs.db
desktop.ini
# Vim / Emacs
*~
\#*\#
.\#*
# GoLand/IntelliJ
*.iml
/storage_data/