95 lines
1.6 KiB
Plaintext
95 lines
1.6 KiB
Plaintext
# ============================================
|
|
# Dependencies
|
|
# ============================================
|
|
node_modules/
|
|
|
|
# ============================================
|
|
# Database
|
|
# ============================================
|
|
data/
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ============================================
|
|
# Environment & Secrets
|
|
# ============================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
.env.staging
|
|
*.pem
|
|
*.key
|
|
|
|
# ============================================
|
|
# Logs
|
|
# ============================================
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ============================================
|
|
# OS Files
|
|
# ============================================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# ============================================
|
|
# IDE & Editors
|
|
# ============================================
|
|
.idea/
|
|
.vscode/
|
|
.history/
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*~
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# ============================================
|
|
# Build & Output
|
|
# ============================================
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
|
|
# ============================================
|
|
# Test & Coverage
|
|
# ============================================
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
.coverage
|
|
|
|
# ============================================
|
|
# Temporary Files
|
|
# ============================================
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
|
|
# ============================================
|
|
# Runtime
|
|
# ============================================
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|