feat(cli): ✨ Add "up" command for handling version/package upgrades in CLI system
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
4dbc3a963d
commit
c2ea41f331
2 changed files with 3 additions and 2 deletions
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ const lazyCommands: Record<string, [string, string]> = {
|
|||
|
||||
// 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'],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue