From 5dfd92a0eb8d8b30135fdcba90f5fb244a7b28bc Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 20 Mar 2026 03:02:21 -0700 Subject: [PATCH] =?UTF-8?q?chore(imajin-video):=20=F0=9F=94=A7=20Update=20?= =?UTF-8?q?deployment=20manifest=20with=20new=20version,=20environment=20v?= =?UTF-8?q?ariables,=20and=20resource=20configurations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- services/imajin-video/app.manifest.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/imajin-video/app.manifest.yaml b/services/imajin-video/app.manifest.yaml index 4a6eeeb6..f127dbc8 100644 --- a/services/imajin-video/app.manifest.yaml +++ b/services/imajin-video/app.manifest.yaml @@ -16,10 +16,10 @@ platforms: description: Video processing REST API (protection pipeline, recording proxy) start: path: ~/Code/@applications/@imajin/services/imajin-video/service - script: source .venv/bin/activate && python -m uvicorn src.api.app:app --host 0.0.0.0 --port 8010 + script: CUDA_VISIBLE_DEVICES=1 python3.12 -m uvicorn api.app:app --host 0.0.0.0 --port 8010 --app-dir src stop: path: ~/Code/@applications/@imajin/services/imajin-video/service - script: pkill -f "uvicorn src.api.app:app" || true + script: pkill -f "uvicorn api.app:app" || pkill -f "uvicorn src.api.app:app" || true status: command: "curl -sf http://localhost:8010/health > /dev/null && echo ok" type: http