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", link: [SECRET.SupportApiKey], environment: { KIRINCODE_STORAGE_ADAPTER: "r2", KIRINCODE_STORAGE_ACCOUNT_ID: sst.cloudflare.DEFAULT_ACCOUNT_ID, KIRINCODE_STORAGE_ACCESS_KEY_ID: SECRET.R2AccessKey.value, KIRINCODE_STORAGE_SECRET_ACCESS_KEY: SECRET.R2SecretKey.value, KIRINCODE_STORAGE_BUCKET: storage.name, }, })