diff options
| author | Dax Raad <[email protected]> | 2025-09-02 03:14:56 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-02 03:18:30 -0400 |
| commit | 810c9cff1db91f10158cc002dc70b89871762e1e (patch) | |
| tree | 108ea81a51856003bad4d376a6a0fa79e5964216 /sst.config.ts | |
| parent | 47d4c87bdd358f69be5a5612868b5127de1922a3 (diff) | |
| download | opencode-810c9cff1db91f10158cc002dc70b89871762e1e.tar.gz opencode-810c9cff1db91f10158cc002dc70b89871762e1e.zip | |
wip: cloud
Diffstat (limited to 'sst.config.ts')
| -rw-r--r-- | sst.config.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sst.config.ts b/sst.config.ts index 44f984b93..06cce7f3f 100644 --- a/sst.config.ts +++ b/sst.config.ts @@ -1,5 +1,4 @@ /// <reference path="./.sst/platform/config.d.ts" /> - export default $config({ app(input) { return { @@ -11,16 +10,17 @@ export default $config({ stripe: { apiKey: process.env.STRIPE_SECRET_KEY, }, + planetscale: "0.4.1", }, - } + }; }, async run() { - const { api } = await import("./infra/app.js") - const { auth, gateway } = await import("./infra/cloud.js") + const { api } = await import("./infra/app.js"); + const { auth, gateway } = await import("./infra/cloud.js"); return { api: api.url, gateway: gateway.url, auth: auth.url, - } + }; }, -}) +}); |
