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 --- Omni/Bild.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Omni/Bild.nix') diff --git a/Omni/Bild.nix b/Omni/Bild.nix index b7e0801..82ae339 100644 --- a/Omni/Bild.nix +++ b/Omni/Bild.nix @@ -110,6 +110,7 @@ pkgs = with stable.pkgs; { inherit alejandra + awscli2 bat bc cmark @@ -117,6 +118,7 @@ universal-ctags datasette deadnix + doctl fd figlet findutils @@ -256,6 +258,7 @@ bc self.bild datasette + doctl universal-ctags fd figlet -- cgit v1.2.3 From b18bd4eee969681ee532c4898ddaaa0851e6b846 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 16 Dec 2025 13:24:54 -0500 Subject: Batch web_reader tool, much faster Added retry with backoff, parallel proccessing, editing pages down to main content, summarization with haiku. It's so much faster and more reliable now. Plus improved the logging system and distangled the status UI bar from the logging module. --- Omni/Bild.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'Omni/Bild.nix') diff --git a/Omni/Bild.nix b/Omni/Bild.nix index 82ae339..ca70ae8 100644 --- a/Omni/Bild.nix +++ b/Omni/Bild.nix @@ -148,6 +148,7 @@ llama-cpp = unstable.llama-cpp; llm = unstable.python312.withPackages (p: [p.llm]); ollama = unstable.ollama; + trafilatura = unstable.python312.withPackages (p: [p.trafilatura]); ruff = unstable.ruff; shellcheck = unstable.shellcheck; }; -- cgit v1.2.3