- 更新 .gitignore 规则匹配所有子目录下的 prisma/*.db - 从 git 跟踪中移除 apps/api/prisma/dev.db 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
329 B
Plaintext
41 lines
329 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
out
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Prisma
|
|
**/prisma/*.db
|
|
**/prisma/*.db-journal
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|