Deploys cloudflare workers without the overhead of wrangler/node
Go to file
2023-10-17 13:39:59 -07:00
src initial commit 2023-10-17 13:39:59 -07:00
.gitignore initial commit 2023-10-17 13:39:59 -07:00
build.zig initial commit 2023-10-17 13:39:59 -07:00
LICENSE initial commit 2023-10-17 13:39:59 -07:00
README.md initial commit 2023-10-17 13:39:59 -07:00

Upload worker to CloudFlare

Steps we take:

  1. Check if the worker exists: GET https://api.cloudflare.com/client/v4/accounts//workers/services/<worker_name> 404 - does not exist
  2. Add the "script" PUT https://api.cloudflare.com/client/v4/accounts//workers/scripts/<worker_name>?include_subdomain_availability=true&excludeScript=true
  3. Get the "subdomain". I believe this is simply to determine the test url: GET https://api.cloudflare.com/client/v4/accounts//workers/subdomain
  4. Enable the script: This is only done if the script did not exist. Subsequent flows leave this alone POST https://api.cloudflare.com/client/v4/accounts//workers/scripts/<worker_name>/subdomain Data: { "enabled": true }