Files
timmy-config/recipes/sovereign_deploy.json

24 lines
584 B
JSON
Raw Normal View History

2026-04-11 00:52:31 +00:00
{
"name": "Sovereign Deployment",
"description": "Deterministic deployment pipeline for Foundation services",
"steps": [
{
"name": "Validate Config",
"command": "python3 scripts/config_validator.py"
},
{
"name": "Run Architecture Linter",
"command": "python3 scripts/architecture_linter_v2.py"
},
{
"name": "Execute Deployment Script",
"command": "bash deploy.sh",
"continue_on_failure": false
},
{
"name": "Post-Deployment Health Check",
"command": "python3 scripts/self_healing.py"
}
]
}