summaryrefslogtreecommitdiffhomepage
path: root/infra/stage.ts
blob: 7ec91e9ac6017035f88b6bf3541c0a10827652c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const domain = (() => {
  if ($app.stage === "production") return "opencode.ai"
  if ($app.stage === "dev") return "dev.opencode.ai"
  return `${$app.stage}.dev.opencode.ai`
})()

export const zoneID = "430ba34c138cfb5360826c4909f99be8"

// new cloudflare.RegionalHostname("RegionalHostname", {
//   hostname: domain,
//   regionKey: "us",
//   zoneId: zoneID,
// })