This commit is contained in:
Frank
2026-02-08 10:31:07 -05:00
parent 7c6b8d7a8a
commit 80c1c59ed3
11 changed files with 264 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ const stage = process.argv[2]
if (!stage) throw new Error("Stage is required")
const root = path.resolve(process.cwd(), "..", "..", "..")
const PARTS = 10
const PARTS = 20
// read the secret
const ret = await $`bun sst secret list`.cwd(root).text()

View File

@@ -9,7 +9,7 @@ const stage = process.argv[2]
if (!stage) throw new Error("Stage is required")
const root = path.resolve(process.cwd(), "..", "..", "..")
const PARTS = 10
const PARTS = 20
// read the secret
const ret = await $`bun sst secret list --stage ${stage}`.cwd(root).text()

View File

@@ -7,7 +7,7 @@ import { ZenData } from "../src/model"
const root = path.resolve(process.cwd(), "..", "..", "..")
const models = await $`bun sst secret list`.cwd(root).text()
const PARTS = 10
const PARTS = 20
// read the line starting with "ZEN_MODELS"
const lines = models.split("\n")