This commit is contained in:
2026-02-19 21:49:41 +02:00
parent ea69b43444
commit 136564a332

View File

@@ -198,7 +198,7 @@ let
redis = { condition = "service_started"; }; redis = { condition = "service_started"; };
frontend = { condition = "service_started"; }; frontend = { condition = "service_started"; };
}; };
command = "npm exec tsx migrate.ts init-container"; command = [ "npm" "exec" "tsx" "migrate.ts" "init-container" ];
}; };
frontend = serviceCommon // frontendContainerSpec // { frontend = serviceCommon // frontendContainerSpec // {
@@ -239,7 +239,7 @@ let
} }
// optionalAttrs cfg.bluesky.enable { // optionalAttrs cfg.bluesky.enable {
pds_worker = serviceCommon // backendContainerSpec // { pds_worker = serviceCommon // backendContainerSpec // {
command = "npm exec tsx atproto.ts"; command = [ "npm" "exec" "tsx" "atproto.ts" ];
depends_on = { depends_on = {
db = { condition = "service_started"; }; db = { condition = "service_started"; };
redis = { condition = "service_started"; }; redis = { condition = "service_started"; };