From a7dcb30c7a465d9fce72b7fc3e605470b2b59814 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 16 Dec 2025 08:06:09 -0500 Subject: feat(deploy): Complete mini-PaaS deployment system (t-266) - Add Omni/Deploy/ with Manifest, Deployer, Systemd, Caddy modules - Manifest CLI: show, update, add-service, list, rollback commands - Deployer: polls S3 manifest, pulls closures, manages systemd units - Caddy integration for dynamic reverse proxy routes - bild: auto-cache to S3, outputs STORE_PATH for push.sh - push.sh: supports both NixOS and service deploys - Biz.nix: simplified to base OS + deployer only - Services (podcastitlater-web/worker) now deployer-managed - Documentation: README.md with operations guide --- Biz/Packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Biz/Packages.nix') diff --git a/Biz/Packages.nix b/Biz/Packages.nix index 6b17fe5..492671f 100644 --- a/Biz/Packages.nix +++ b/Biz/Packages.nix @@ -10,6 +10,9 @@ {bild ? import ../Omni/Bild.nix {}}: { storybook = bild.run ../Biz/Storybook.py; podcastitlater-web = bild.run ../Biz/PodcastItLater/Web.py; - podcastitlater-worker = bild.run ../Biz/PodcastItLater/Worker.py; + podcastitlater-worker = bild.run ../Biz/PodcastItLater/Worker/Core.py; dragons-analysis = bild.run ../Biz/Dragons/Analysis.hs; + # Mini-PaaS deployer + biz-deployer = bild.run ../Omni/Deploy/Deployer.hs; + deploy-manifest = bild.run ../Omni/Deploy/Manifest.hs; } -- cgit v1.2.3