From c2ea41f33132d5ee75e5e94f45917d065e9bf634 Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Fri, 20 Mar 2026 02:32:29 -0700 Subject: [PATCH] =?UTF-8?q?feat(cli):=20=E2=9C=A8=20Add=20"up"=20command?= =?UTF-8?q?=20for=20handling=20version/package=20upgrades=20in=20CLI=20sys?= =?UTF-8?q?tem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- run/cli/commands/up/index.ts | 3 ++- run/cli/index.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/run/cli/commands/up/index.ts b/run/cli/commands/up/index.ts index 849cb4b..827a6fb 100644 --- a/run/cli/commands/up/index.ts +++ b/run/cli/commands/up/index.ts @@ -13,7 +13,7 @@ * - up:atlilith Start www.atlilith.local * - up:trustedmeet Start www.trustedmeet.local * - up:video-studio Start Video Studio + imajin-video + imajin-adversarial - * - up:media-gallery Start media-gallery API + * - up:media-gallery Start Media Gallery API + Docker infrastructure */ import { DeploymentOrchestrator } from '../../../core/deployment-orchestrator'; @@ -42,3 +42,4 @@ export const upSpoiledbabes = (_ctx: CommandContext) => startDeployment('spoiled export const upLilithcam = (_ctx: CommandContext) => startDeployment('lilith_cam.www'); export const upLilithstage = (_ctx: CommandContext) => startDeployment('lilithstage.www'); export const upVideoStudio = (_ctx: CommandContext) => startDeployment('video-studio'); +export const upMediaGallery = (_ctx: CommandContext) => startDeployment('media-gallery'); diff --git a/run/cli/index.ts b/run/cli/index.ts index be8d49f..8412392 100644 --- a/run/cli/index.ts +++ b/run/cli/index.ts @@ -136,7 +136,7 @@ const lazyCommands: Record = { // Feature development (real backends, no MSW) 'up:profile-assistant': ['./commands/feature-dev/index', 'upProfileAssistant'], - 'up:media-gallery': ['./commands/photos/backend', 'upMediaGallery'], + 'up:media-gallery': ['./commands/up/index', 'upMediaGallery'], // LilithIPhotos macOS client (plum) 'photos:deploy': ['./commands/photos/index', 'photosDeploy'],