mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-20 21:00:29 +08:00
18 lines
578 B
TypeScript
18 lines
578 B
TypeScript
import { SECRET } from "./secret"
|
|
import { shortDomain } from "./stage"
|
|
|
|
const storage = new sst.cloudflare.Bucket("EnterpriseStorage")
|
|
|
|
new sst.cloudflare.x.SolidStart("Teams", {
|
|
domain: shortDomain,
|
|
path: "packages/enterprise",
|
|
buildCommand: "bun run build:cloudflare",
|
|
environment: {
|
|
OPENCODE_STORAGE_ADAPTER: "r2",
|
|
OPENCODE_STORAGE_ACCOUNT_ID: sst.cloudflare.DEFAULT_ACCOUNT_ID,
|
|
OPENCODE_STORAGE_ACCESS_KEY_ID: SECRET.R2AccessKey.value,
|
|
OPENCODE_STORAGE_SECRET_ACCESS_KEY: SECRET.R2SecretKey.value,
|
|
OPENCODE_STORAGE_BUCKET: storage.name,
|
|
},
|
|
})
|