Add the initial src/ package (empty FastAPI entrypoint, Settings stub), an .env.example placeholder, and expand .gitignore for test/coverage artifacts, environment files, and local Claude Code overrides. Also documents the Alembic async bootstrap command in ADR-0009. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
25 lines
310 B
Plaintext
25 lines
310 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
|
|
# Virtual environments
|
|
.venv
|
|
|
|
# Test and coverage artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.langfuse
|
|
infra/langfuse/.env
|
|
|
|
# Claude Code local overrides
|
|
.claude/settings.local.json
|