This commit is contained in:
sjk
2025-11-17 14:09:17 +08:00
commit 31e46c5bf6
479 changed files with 109324 additions and 0 deletions

93
.gitignore vendored Normal file
View File

@@ -0,0 +1,93 @@
# 编译文件
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
# Go工作区文件
go.work
# 依赖目录
vendor/
# 编译输出
bin/
dist/
build/
# 日志文件
*.log
logs/
serve/logs/
# 数据库文件
*.db
*.sqlite
*.sqlite3
# 临时文件
*.tmp
*.temp
*.swp
*.swo
*~
# IDE和编辑器
.vscode/
.idea/
*.iml
.DS_Store
Thumbs.db
# 环境变量文件
.env
.env.local
.env.*.local
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
*.egg-info/
.pytest_cache/
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Flutter/Dart
client/.dart_tool/
client/.flutter-plugins
client/.flutter-plugins-dependencies
client/.packages
client/build/
client/pubspec.lock
# 测试覆盖率
coverage/
*.cover
.coverage
htmlcov/
# 数据文件(可选)
data/*.xlsx
data/*.csv
!data/README.md
.windsurf/
docs/
*.zip
**/build/**