63 lines
802 B
Plaintext
63 lines
802 B
Plaintext
# ── Dependencies ──
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# ── Build output ──
|
|
dist/
|
|
build/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
|
|
# ── Environment & secrets ──
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# ── Logs ──
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# ── OS files ──
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# ── Editor temp files ──
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-*
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ── Test coverage ──
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# ── Rust / Tauri ──
|
|
target/
|
|
apps/desktop/src-tauri/target/
|
|
|
|
# ── Docker data volumes ──
|
|
docker-data/
|
|
|
|
# ── Prisma generated (client regenerated on install) ──
|
|
packages/db/node_modules/.prisma/
|
|
|
|
# ── Misc dev artifacts ──
|
|
*.tgz
|
|
*.cache
|
|
*.pid
|