64 lines
575 B
Plaintext
64 lines
575 B
Plaintext
# 依赖目录
|
|
node_modules
|
|
**/node_modules
|
|
|
|
# 构建输出
|
|
dist
|
|
build
|
|
server/wwwroot
|
|
server/public/dist
|
|
|
|
# 日志文件
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 环境变量文件
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 操作系统
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Docker
|
|
.dockerignore
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# 文档
|
|
README.md
|
|
README-zh.md
|
|
LICENSE
|
|
|
|
# 测试
|
|
test
|
|
tests
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# 上传文件
|
|
server/public/uploads
|
|
public/uploads
|
|
|