Files
award/.gitignore
Joerg 6b195d3014 feat: add comprehensive logging system with file output
- Add backend logging to logs/backend.log with file rotation support
- Add frontend logging to logs/frontend.log via /api/logs endpoint
- Add frontend logger utility with batching and user context
- Update .gitignore to exclude log files but preserve logs directory
- Update CLAUDE.md with logging documentation and usage examples

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-20 11:04:31 +01:00

47 lines
533 B
Plaintext

# dependencies (bun install)
node_modules
# output
out
dist
*.tgz
# SvelteKit build artifacts
src/frontend/.svelte-kit/
src/frontend/build/
# code coverage
coverage
*.lcov
# logs
logs/*.log
logs
_.log
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
!logs/.gitkeep
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# caches
.eslintcache
.cache
*.tsbuildinfo
# IntelliJ based IDEs
.idea
# Finder (MacOS) folder config
.DS_Store
# databases
*.db
*.sqlite
*.sqlite3
sample