From fc4f281408c56ab12db571a470456212a479edf5 Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 18 Sep 2025 01:32:40 -0400 Subject: wip: zen --- infra/cloud.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'infra') diff --git a/infra/cloud.ts b/infra/cloud.ts index 9c58150c3..23984cb4c 100644 --- a/infra/cloud.ts +++ b/infra/cloud.ts @@ -44,7 +44,7 @@ new sst.x.DevCommand("Studio", { link: [database], dev: { command: "bun db studio", - directory: "cloud/core", + directory: "packages/cloud/core", autostart: true, }, }) @@ -59,7 +59,7 @@ const GOOGLE_CLIENT_ID = new sst.Secret("GOOGLE_CLIENT_ID") const authStorage = new sst.cloudflare.Kv("AuthStorage") export const auth = new sst.cloudflare.Worker("AuthApi", { domain: `auth.${domain}`, - handler: "cloud/function/src/auth.ts", + handler: "packages/cloud/function/src/auth.ts", url: true, link: [database, authStorage, GITHUB_CLIENT_ID_CONSOLE, GITHUB_CLIENT_SECRET_CONSOLE, GOOGLE_CLIENT_ID], }) @@ -120,14 +120,14 @@ let logProcessor if ($app.stage === "production" || $app.stage === "frank") { const HONEYCOMB_API_KEY = new sst.Secret("HONEYCOMB_API_KEY") logProcessor = new sst.cloudflare.Worker("LogProcessor", { - handler: "cloud/function/src/log-processor.ts", + handler: "packages/cloud/function/src/log-processor.ts", link: [HONEYCOMB_API_KEY], }) } new sst.cloudflare.x.SolidStart("Console", { domain, - path: "cloud/app", + path: "packages/cloud/app", link: [ database, AUTH_API_URL, -- cgit v1.2.3