- Replace hardcoded ERPNext token and Twilio SID with $VAR placeholders - Add .gitignore to exclude .env files, node_modules, build output - Untrack apps/website/.env (contained Supabase key) - Remove git.gigafibre.ca references (use git.targo.ca only) Server-side (applied live): - Traefik: disable dashboard, close port 8080 - Oktopus: add Authentik forwardAuth middleware - Log level: DEBUG → WARN Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
211 B
Plaintext
22 lines
211 B
Plaintext
# Environment files (may contain secrets)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
apps/**/.env
|
|
apps/**/.env.local
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|