Files
provenance/.gitignore
T
justin 03aa9a3ca7 Scaffold FastAPI backend skeleton with health probes
Phase 0 foundation. uv-managed FastAPI app (package=false, runs from source via uv run). Layered seams in place: app/api for routers, app/core for config (pydantic-settings, fully env-driven) and the async SQLAlchemy engine; service/repository/domain layers land with the data model.

Exposes /health (liveness) and /health/ready (Postgres reachability via SELECT 1, 503 on failure) so the deploy wiring is verifiable before any data model exists. Includes a liveness test and the resolved uv.lock. Ignore pytest/ruff/mypy caches.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Justin Paul <justin@jpaul.me>
2026-06-06 10:16:58 -04:00

43 lines
404 B
Plaintext

# OS
.DS_Store
Thumbs.db
desktop.ini
# Editors
.vscode/
.idea/
*.swp
*.swo
*~
# Environment
.env
.env.*
!.env.example
# Dependencies
node_modules/
.venv/
venv/
__pycache__/
*.py[cod]
target/
dist/
build/
# Tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Local data — sensitive by nature for this project
/data/
*.ged
*.gedcom