diff options
| author | Frank <[email protected]> | 2025-09-18 10:59:01 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-18 10:59:01 -0400 |
| commit | 4ceabdffa07b1af8d99eb73622a4d549d99ec6d2 (patch) | |
| tree | 72e2ae62084a9e24cc76caffbd1f30dafc69ea56 /infra | |
| parent | c87480cf931a6f8f8b55552558ef521f1918b578 (diff) | |
| download | opencode-4ceabdffa07b1af8d99eb73622a4d549d99ec6d2.tar.gz opencode-4ceabdffa07b1af8d99eb73622a4d549d99ec6d2.zip | |
wip: zen
Diffstat (limited to 'infra')
| -rw-r--r-- | infra/console.ts (renamed from infra/cloud.ts) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/infra/cloud.ts b/infra/console.ts index 23984cb4c..6ca842380 100644 --- a/infra/cloud.ts +++ b/infra/console.ts @@ -44,7 +44,7 @@ new sst.x.DevCommand("Studio", { link: [database], dev: { command: "bun db studio", - directory: "packages/cloud/core", + directory: "packages/console/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: "packages/cloud/function/src/auth.ts", + handler: "packages/console/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: "packages/cloud/function/src/log-processor.ts", + handler: "packages/console/function/src/log-processor.ts", link: [HONEYCOMB_API_KEY], }) } new sst.cloudflare.x.SolidStart("Console", { domain, - path: "packages/cloud/app", + path: "packages/console/app", link: [ database, AUTH_API_URL, |
