Setup
Everything you need before deploying to Cloudflare: the alchemy package, a Cloudflare account, and stored credentials.
Install
Section titled “Install”Install alchemy@latest and effect@rc
in your project:
bun add "alchemy@latest" "effect@rc" "@effect/platform-bun@rc" "@effect/platform-node@rc"npm install "alchemy@latest" "effect@rc" "@effect/platform-bun@rc" "@effect/platform-node@rc"pnpm add "alchemy@latest" "effect@rc" "@effect/platform-bun@rc" "@effect/platform-node@rc"yarn add "alchemy@latest" "effect@rc" "@effect/platform-bun@rc" "@effect/platform-node@rc"Create a Cloudflare account
Section titled “Create a Cloudflare account”If you don’t have one yet, sign up for Cloudflare — the free plan is enough for everything in the tutorial.
Connect alchemy to Cloudflare
Section titled “Connect alchemy to Cloudflare”Connect Cloudflare (the default profile is created automatically on
first use):
alchemy profile edit --add CloudflareFor Cloudflare you can:
- Sign in with OAuth — opens the browser, no tokens to manage.
- Paste an API token — if you prefer explicit, scoped tokens.
The OAuth flow asks whether you want to customize scopes — answer yes to pick exactly which ones to grant at a multiselect prompt (the default set covers typical use).
Either way the result is saved to your default
profile at ~/.alchemy/profiles.json — no
environment variables and no wrangler login required.
To re-run the flow later:
# Re-run the interactive setup (e.g. switch from OAuth → API token)alchemy profile edit --reconfigure Cloudflare
# Or manage every account in the profile from one menualchemy profile editprofile edit imports your stack file to discover which providers
are available, so the menu matches the providers you actually use.
Profiles
Section titled “Profiles”A profile is a named bundle of credentials. Commands use the built-in
default profile unless you name another one explicitly.
Pass --profile <name> or set $ALCHEMY_PROFILE to select one —
handy for separating work and personal accounts, or staging and prod credentials:
# Log into a separate profilealchemy profile create prodalchemy profile edit --profile prod
# Deploy with italchemy deploy --stage prod --profile prodInspect what’s stored (credentials are redacted) with:
alchemy profile showSee Profiles for the full picture.
Where next
Section titled “Where next”- Tutorial part 1 — create a Stack, deploy your first resource.
- Cloudflare overview — the map of resources and guides.
- Secrets & env — wire
.envvalues and secrets into your Workers (deploy credentials live in your profile; app secrets are bindings).