0df1ec391a
PLAN.md: 998 lines (vertical-slice plan with wave ordering) .gitignore: fix .env.example being ignored by .env.* pattern (D-038) Wave 1: Dockerfile + docker-compose.yml + .dockerignore | FastAPI StaticFiles mount Wave 2: PVE API layer (8 scripts) | health-check.sh Wave 3: firstboot-hook.sh | install-service.sh + praxis.service | lxc-deploy.sh Wave 4: secret wiring + .env.example | bats tests (11 files) | E2E verification Persona load: devops-engineer 15 tasks, lead-developer 4, backend 4, data 2, frontend 0 (deactivated) ---ci--- project: praxis phase: 0 milestone: v0.2 status: plan ---/ci---
40 lines
408 B
Plaintext
40 lines
408 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.secrets
|
|
.env.*
|
|
!.env.example
|
|
|
|
# SQLite
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Node / client
|
|
client/node_modules/
|
|
client/dist/
|
|
client/.vite/
|
|
|
|
# Pytest / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Piper voice models (pre-staged locally, not committed)
|
|
*.onnx
|
|
*.pt
|
|
*.bin
|
|
piper_models/ |