Cloudflare Deployment
We use Cloudflare’s ecosystem to host our applications, ensuring they are fast and globally distributed.
Cloudflare Pages
Section titled “Cloudflare Pages”Front-end applications like the dashboard-ui and docs are deployed using Cloudflare Pages.
- Connect your GitHub repository to Cloudflare Pages.
- Select the appropriate framework preset (e.g., React or Astro).
- Set the build command:
- For Docs:
pnpm --filter docs build - Output directory:
apps/docs/dist
- For Docs:
Cloudflare Workers
Section titled “Cloudflare Workers”Backend APIs or specific serverless functions are deployed using Cloudflare Workers.
We use wrangler to deploy Workers. You can deploy manually using:
npx wrangler deployMake sure you are authenticated (npx wrangler login) and have the correct wrangler.json or wrangler.toml configured in the specific app/package directory.