48 lines
461 B
Plaintext
48 lines
461 B
Plaintext
# Git 相关
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# 编辑器和 IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 操作系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 数据文件(运行时生成)
|
|
data/*.json
|
|
|
|
# 日志文件
|
|
*.log
|
|
|
|
# 临时文件
|
|
tmp/
|
|
temp/
|
|
|
|
# 文档
|
|
README.md
|
|
LICENSE
|
|
*.md
|
|
|
|
# Docker 相关
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# 测试文件
|
|
*_test.go
|
|
test/
|
|
tests/
|
|
|
|
# 构建产物
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|