From 0b005c192b2c141c7f6c9bff4a0702361814c21d Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 13 Aug 2025 13:36:30 -0400 Subject: Prototype PodcastItLater This implements a working prototype of PodcastItLater. It basically just works for a single user currently, but the articles are nice to listen to and this is something that we can start to build with. --- Biz.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Biz.nix') diff --git a/Biz.nix b/Biz.nix index 2268ab0..6aede6c 100755 --- a/Biz.nix +++ b/Biz.nix @@ -13,6 +13,8 @@ bild.os { ./Omni/Packages.nix ./Omni/Users.nix ./Biz/Storybook.nix + ./Biz/PodcastItLater/Web.nix + ./Biz/PodcastItLater/Worker.nix ]; networking.hostName = "biz"; networking.domain = "storybook.bensima.com"; @@ -21,4 +23,12 @@ bild.os { enable = true; package = bild.run ./Biz/Storybook.py; }; + services.podcastitlater-web = { + enable = true; + package = bild.run ./Biz/PodcastItLater/Web.py; + }; + services.podcastitlater-worker = { + enable = true; + package = bild.run ./Biz/PodcastItLater/Worker.py; + }; } -- cgit v1.2.3