- Add docker/Caddyfile to .gitignore (generated artifact, not tracked) - Document generate_caddyfile as canonical source in lib/generators.sh Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
853 B
Text
42 lines
853 B
Text
# Plaintext secrets (never commit)
|
|
.env
|
|
|
|
# Encrypted secrets — safe to commit (SOPS-encrypted with age)
|
|
!.env.enc
|
|
!.env.vault.enc
|
|
!.sops.yaml
|
|
|
|
# Per-box project config (generated by disinto init)
|
|
projects/*.toml
|
|
|
|
# Runtime state
|
|
*.log
|
|
*.log.*
|
|
*.log.old
|
|
state.json
|
|
*.lock
|
|
*.pid
|
|
metrics/supervisor-metrics.jsonl
|
|
|
|
# OS
|
|
.DS_Store
|
|
dev/ci-fixes-*.json
|
|
gardener/dust.jsonl
|
|
|
|
# Individual encrypted secrets (managed by disinto secrets add)
|
|
secrets/
|
|
|
|
# Pre-built binaries for Docker builds (avoid network calls during build)
|
|
docker/agents/bin/
|
|
|
|
# Generated docker-compose.yml (run 'bin/disinto init' to regenerate)
|
|
# Note: This file is now committed to track volume mount configuration
|
|
# docker-compose.yml
|
|
|
|
# Generated Caddyfile — single source of truth is generate_caddyfile in lib/generators.sh
|
|
docker/Caddyfile
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|