diff options
| author | Ben Sima <ben@bsima.me> | 2025-09-04 16:23:17 -0400 |
|---|---|---|
| committer | Ben Sima <ben@bsima.me> | 2025-09-04 16:23:17 -0400 |
| commit | 91750395b5047dfb99f5d9b7b49d336b2bfb38e8 (patch) | |
| tree | e3915b25abd67c22f037bc9b29bfbd7cbd352438 /Biz/PodcastItLater/Web.nix | |
| parent | 2a2ff0749f18670ab82c304c8c3468aeea47846f (diff) | |
Refactor Admin and Database path stuff
Moved the Admin related stuff to a separate file. Removed the
repetitive
`db_path` arg everywhere and replaced it with correct assumptions,
similar to
whats in other apps.
Diffstat (limited to 'Biz/PodcastItLater/Web.nix')
| -rw-r--r-- | Biz/PodcastItLater/Web.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/PodcastItLater/Web.nix b/Biz/PodcastItLater/Web.nix index dfd26eb..8de5ef8 100644 --- a/Biz/PodcastItLater/Web.nix +++ b/Biz/PodcastItLater/Web.nix @@ -54,7 +54,7 @@ in { Environment = [ "PORT=${toString cfg.port}" "AREA=Live" - "DATABASE_PATH=${cfg.dataDir}/podcast.db" + "DATA_DIR=${cfg.dataDir}" "BASE_URL=https://podcastitlater.${rootDomain}" ]; EnvironmentFile = "/run/podcastitlater/env"; |
