c59338fe2c
- .gitignore: add coverage/ and data/ patterns - .dockerignore: exclude screenshots, tests, scripts, .github, docs assets from build context for faster Docker builds - Delete docs/social-preview.html (one-time generator, no longer needed) - Delete public/locales/.gitkeep (directory has de.json and en.json) - scripts/seed-demo.js: replace hardcoded absolute path with portable resolve(__dirname, '..', 'data', 'oikos.db') default - Add .github/PULL_REQUEST_TEMPLATE.md with summary, changes, checklist Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
574 B
Plaintext
47 lines
574 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 & Test-Coverage
|
|
dist/
|
|
.cache/
|
|
coverage/
|
|
|
|
# Lokales Docker-Volume
|
|
data/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code (enthält lokale Berechtigungen und ggf. Tokens)
|
|
.claude/
|
|
|
|
# Git Worktrees
|
|
.worktrees/
|
|
|
|
# Claude Code Arbeitsdokumente (interne Pläne/Specs, nicht für Contributors)
|
|
docs/superpowers/
|
|
|
|
# Textdateien mit Tokens/Keys (Sicherheitsnetz)
|
|
*.txt
|
|
!public/robots.txt
|
|
CLAUDE.md
|