- README.md: new root README with CI badge, per-service table, quick start, CI pipeline table, file budget docs, and links to production endpoints - CONTRIBUTING.md: dev environment setup, pre-commit checklist, commit marker reference, architecture non-negotiables, Claude Code section - CLAUDE.md: insert First-Time Setup & Claude Code Onboarding section with branch guard, hook explanation, guardrail marker table, and staging rules - REFACTOR_PLAYBOOK.md: commit existing refactor playbook doc - .gitignore: add dist/, .turbo/, pnpm-lock.yaml, .pnpm-store/ to prevent SDK build artifacts from appearing as untracked files Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
51 lines
397 B
Plaintext
51 lines
397 B
Plaintext
# Environment
|
|
.env
|
|
.env.local
|
|
.env.backup
|
|
|
|
# Secrets
|
|
secrets/
|
|
*.pem
|
|
*.key
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
dist/
|
|
.turbo/
|
|
pnpm-lock.yaml
|
|
.pnpm-store/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
venv/
|
|
.venv/
|
|
.coverage
|
|
coverage.out
|
|
test_*.db
|
|
|
|
# Docker
|
|
backups/*.backup
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Large files
|
|
*.pdf
|
|
*.docx
|
|
*.xlsx
|
|
*.pptx
|
|
*.mp4
|
|
*.mp3
|
|
*.wav
|
|
ai-compliance-sdk/server
|
|
*.bak
|