647348c2e7
- Farbkontrast: --color-text-secondary #8E8E93 → #6C6C70 (5.2:1, WCAG AA) - Farbkontrast Dark Mode: secondary → #AEAEB2 (4.6:1 auf #2C2C2E) - Farbkontrast: --color-btn-primary #007AFF → #0066DB (5.0:1 für Buttons) - Login-Seite: <main> als äußerstes Element für Landmark-Erkennung - robots.txt: gültige Datei für self-hosted private App (Disallow: /) - .gitignore: public/robots.txt explizit ausgenommen Lighthouse-Ergebnis: Performance: 98 Accessibility: 100 Best Practices: 92 SEO: 63* *SEO blockiert absichtlich (private self-hosted App, kein öffentlicher Zugang) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
380 B
Plaintext
36 lines
380 B
Plaintext
# Abhängigkeiten
|
|
node_modules/
|
|
|
|
# Umgebungsvariablen (NIEMALS committen)
|
|
.env
|
|
|
|
# Datenbank
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# System
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build-Artefakte
|
|
dist/
|
|
.cache/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code (enthält lokale Berechtigungen und ggf. Tokens)
|
|
.claude/
|
|
|
|
# Textdateien mit Tokens/Keys (Sicherheitsnetz)
|
|
*.txt
|
|
!public/robots.txt
|