36 lines
520 B
Plaintext
36 lines
520 B
Plaintext
# Environment variables (local overrides only)
|
|
# .env files are committed (contain production URLs, not secrets)
|
|
# .env.local files are git-ignored (contain local overrides)
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env.local
|
|
frontend/.env.local
|
|
.env
|
|
|
|
# AI assistant instructions (keep private)
|
|
CLAUDE.md
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# OS-specific files
|
|
Thumbs.db
|
|
*.log
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
dist-ssr/
|
|
build/
|
|
*.local
|
|
|
|
# Docker volumes and data
|
|
postgres_data/
|