# Git .git .gitignore # IDE .idea .vscode *.swp *.swo # 构建产物 bin/ dist/ frontend/dist/ frontend/node_modules/ coverage/ # 测试文件 *_test.go *.test.ts *.test.tsx vitest.config.* # 文档 *.md docs/ # 配置文件 (使用打包内的 configs 目录) configs/ # 部署脚本 scripts/ deployment/ # Docker 文件 docker-compose*.yml Dockerfile* # 其他 .tmp/ .cache/ .gomdcache/ .gocache/ .workbuddy/ .coverage/ .env .env.*