* Increase coverage * Add comprehensive LLM development documentation - Add CLAUDE.md as main documentation index - Create 8 detailed documentation files in docs/: - architecture.md: Tech stack, data models, auth system - directory-structure.md: Complete file tree with paths - backend-patterns.md: Module architecture and patterns - database.md: Models, migrations, and workflows - development-workflow.md: Setup and daily development - code-conventions.md: Style guide and best practices - testing.md: Test organization and patterns - common-tasks.md: How-to guides for frequent tasks - Update .gitignore to allow project-level CLAUDE.md - 4,285 lines of comprehensive documentation - Organized for easy navigation with cross-links - LLM-optimized with absolute paths and code examples * fixup! Add comprehensive LLM development documentation
60 lines
704 B
Text
60 lines
704 B
Text
.idea
|
|
*.sqlite3
|
|
*.sqlite3-shm
|
|
*.sqlite3-wal
|
|
certs/
|
|
.DS_Store
|
|
.cursor
|
|
AGENTS.md
|
|
# CLAUDE.md - project documentation (committed)
|
|
CLAUDE.local.md # User-specific customizations (ignored)
|
|
|
|
.byebug_history
|
|
node_modules
|
|
.env
|
|
|
|
public/js/bundle.js
|
|
.aider*
|
|
.claude*
|
|
|
|
backend/coverage/
|
|
|
|
# User uploaded files
|
|
backend/uploads/
|
|
uploads/
|
|
|
|
# Backup files
|
|
backend/backups/
|
|
|
|
# Docker volumes
|
|
tududi_db/
|
|
|
|
# Log files
|
|
*.log
|
|
server.log
|
|
backend/server.log
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
backend/dist/
|
|
|
|
# Webpack output
|
|
public/assets/
|
|
|
|
# TypeScript build info
|
|
.tsbuildinfo
|
|
|
|
# Webpack cache
|
|
.webpack/
|
|
|
|
# Playwright test results
|
|
test-results/
|
|
.last-run.json
|
|
|
|
# Test files
|
|
backend/tests/test-files/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
*.bak
|