blob: 44f984b93cc67f5ba8429009029e76b40284780c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/// <reference path="./.sst/platform/config.d.ts" />
export default $config({
app(input) {
return {
name: "opencode",
removal: input?.stage === "production" ? "retain" : "remove",
protect: ["production"].includes(input?.stage),
home: "cloudflare",
providers: {
stripe: {
apiKey: process.env.STRIPE_SECRET_KEY,
},
},
}
},
async run() {
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,
}
},
})
|