35 lines
418 B
Plaintext
35 lines
418 B
Plaintext
# 依赖 —— Dockerfile 内用 npm ci 安装
|
|
node_modules
|
|
|
|
# 构建产物 —— Dockerfile 内用 npm run build 生成
|
|
.next
|
|
|
|
# 运行时数据 —— volume 挂载
|
|
data
|
|
uploads
|
|
reports
|
|
db-backups
|
|
|
|
# 开发工具
|
|
.claude
|
|
.playwright-mcp
|
|
.superpowers
|
|
.git
|
|
.gitignore
|
|
Dockerfile
|
|
docker-compose.yml
|
|
Caddyfile
|
|
.env
|
|
.env.*
|
|
.DS_Store
|
|
|
|
# 文档
|
|
*.md
|
|
*.png
|
|
docs
|
|
CHANGELOG.md
|
|
README.md
|
|
|
|
# 构建缓存
|
|
tsconfig.tsbuildinfo
|