Worker Deploy
The Hono worker serves as the entry point for all update requests.
1. Setting up Secrets
Section titled “1. Setting up Secrets”You must configure the following secrets for your worker:
npx wrangler secret put ADMIN_SECRET # Used to authenticate the CLI publish commandnpx wrangler secret put PRIVATE_KEY # (Optional) Used for code signing2. Deploying the Worker
Section titled “2. Deploying the Worker”Deploy the worker to Cloudflare:
cd apps/update-serverpnpm run deployOnce deployed, your worker will be accessible at a .workers.dev subdomain (or your custom domain).