# Git .git .gitignore .gitattributes # IDE .idea .vscode *.swp *.swo *~ # OS .DS_Store Thumbs.db # 构建产物 dist/ build/ *.exe *.dll *.so *.dylib huobao-drama backend # 依赖 node_modules/ **/node_modules/ vendor/ # 数据文件 data/ *.db *.log # 临时文件 tmp/ temp/ # 前端构建缓存 web/.vite/ web/dist/ # 测试 *.test coverage/ # 文档 README.md drama.png *.md # Docker Dockerfile* docker-compose*.yml .dockerignore # CI/CD .github/ .gitlab-ci.yml