# Alchemy > Alchemy Effect is an Infrastructure-as-Effects (IaE) framework that combines cloud infrastructure and application logic into a single, type-safe program powered by [Effect](https://effect.website). Resources are declared as Effects; bindings wire IAM, env vars, and typed SDKs in one call; deploys and runtime share the same code. This file is a navigation index for the documentation site at https://alchemy.run. Every page under `/src/content/docs/` is listed below with its URL and a one-line summary, so an agent can pick the right page in one hop. This is the full index including every service-level API reference page; the smaller [llms.txt](https://alchemy.run/llms.txt) covers just the guides and concept docs. ## Start here - [What is Alchemy?](https://alchemy.run/what-is-alchemy) — Alchemy is Infrastructure as Code built in pure Effect, with Infrastructure as Effects on top. Declare your cloud resources and the code that runs on them in one type-safe TypeScript program, and deploy it with one command. - [Getting started](https://alchemy.run/getting-started) — Install Alchemy and create your first Stack in under two minutes. - [Migrating from v1](https://alchemy.run/migrating-from-v1) — Migrate your Alchemy v1 (async/await) project to Alchemy v2. ## CLI Every command runs through your package manager: bun alchemy . Command pages by role, plus the Adopting Resources and Inspecting State guides. - [CLI](https://alchemy.run/cli) — Every alchemy command at a glance — the command map, common options, and how the interactive TUI decides when to render. - [deploy](https://alchemy.run/cli/deploy) — Compute a plan, ask for approval, and create/update/delete resources to match the desired state. - [plan](https://alchemy.run/cli/plan) — Preview what would change without applying anything. Equivalent to alchemy deploy --dry-run. - [destroy](https://alchemy.run/cli/destroy) — Delete every resource in a stack — plan all existing resources for deletion, ask for approval, and remove them in dependency order. - [drift](https://alchemy.run/cli/drift) — Detect infrastructure drift by re-observing the cloud, and optionally repair it back to the last deployed state. - [nuke](https://alchemy.run/cli/nuke) — Enumerate and delete every live resource across the stack's providers. - [Adopting Resources](https://alchemy.run/cli/adopting-resources) — How alchemy takes ownership of pre-existing cloud resources — recovery by default, --adopt for foreign resources, and the programmatic AdoptPolicy. - [dev](https://alchemy.run/cli/dev) — Run your stack in development mode with hot reloading — resources deploy to the cloud while Workers run in the local dev runtime. - [logs](https://alchemy.run/cli/logs) — Fetch or tail logs from deployed resources, merged and color-coded by resource. - [profile](https://alchemy.run/cli/profile) — Create, refresh, rename, edit, inspect, or delete Alchemy authentication profiles. - [state](https://alchemy.run/cli/state) — Browse, read, and delete entries in the state store. - [Inspecting State](https://alchemy.run/cli/inspecting-state) — See what alchemy thinks is deployed, debug a bad diff, and recover from bad state. - [aws](https://alchemy.run/cli/aws) — AWS provider commands — bootstrap the per-account assets bucket that Lambda deployments rely on. - [cloudflare](https://alchemy.run/cli/cloudflare) — Cloudflare provider commands — bootstrap the state-store worker, mint API tokens, and inspect state-store logs. ## Infrastructure as Code The noun graph and its semantics: Stacks of Resources and Actions, data flow via Inputs & Outputs and References, deploy behavior via the Resource lifecycle and Providers. - [Stacks](https://alchemy.run/infrastructure-as-code/stack) — A Stack is a collection of Resources deployed together as a unit. - [Resources](https://alchemy.run/infrastructure-as-code/resource) — Resources are named cloud entities with input properties and output attributes. - [Actions](https://alchemy.run/infrastructure-as-code/action) — A node in the dependency graph that runs an Effect during apply when its inputs change. - [Inputs & Outputs](https://alchemy.run/infrastructure-as-code/outputs) — Output is alchemy's lazy reference type — the lazy values that flow between resources, get composed with .pipe, mapped, interpolated, and resolved during deploy. - [References](https://alchemy.run/infrastructure-as-code/references) — Read an already-deployed Resource or Stack at plan time — Resource.ref by Logical ID with optional stack/stage props, or import a Stack tag and depend on its outputs. - [Resource Lifecycle](https://alchemy.run/infrastructure-as-code/resource-lifecycle) — How alchemy plans, applies, replaces, and destroys resources — and how to think about idempotency and recovery. - [Providers](https://alchemy.run/infrastructure-as-code/provider) — Providers implement the lifecycle operations for a resource type — reconcile, delete, diff, read, and more. - [Custom Provider](https://alchemy.run/infrastructure-as-code/custom-provider) — Add support for a new cloud or third-party API by declaring a Resource type and implementing its lifecycle as an Effect Layer. ## Infrastructure as Effects How app code and infrastructure compose: Runtime, Bindings, the Construction and Runtime Phases, and Layers. - [Runtime](https://alchemy.run/infrastructure-as-effects/runtime) — A Runtime is a Resource that carries the code it runs — a Worker, Lambda Function, Container, or Server declared with the Effectful Constructor pattern. Bind what you need, return what you expose. - [Bindings](https://alchemy.run/infrastructure-as-effects/binding) — A Binding connects a Resource to a Worker or Lambda. One line declares the capability and generates the permissions, the configuration, and a typed client. - [Layers](https://alchemy.run/infrastructure-as-effects/layers) — A Layer defines a service contract with swappable implementations. In Alchemy, a Layer can encapsulate Resources and Bindings, so shared services carry their own infrastructure and permissions. - [Event Sources](https://alchemy.run/infrastructure-as-effects/event-sources) — An event source is a binding that runs your Function when something happens on a resource — one call wires the event-source mapping, the permissions, and a typed handler. - [Sinks](https://alchemy.run/infrastructure-as-effects/sinks) — A Sink is the write-side dual of an Event Source — a Binding that exposes a resource as an Effect Sink, batching writes into the batch API with least-privilege IAM. - [Phases](https://alchemy.run/infrastructure-as-effects/phases) — Alchemy programs run in two phases — Construction drives the deploy, Runtime handles requests. Knowing which is which is the key to writing Workers and Lambda Functions. - [Circular Bindings](https://alchemy.run/infrastructure-as-effects/circular-bindings) — How to model two services that reference each other (Worker A ↔ Worker B, Lambda ↔ Lambda) using tagged classes and Layers. - [Custom Runtime](https://alchemy.run/infrastructure-as-effects/custom-runtime) — Implement your own Runtime resource on the Platform type — a Provider that provisions the compute and bundles the runtime Effect. ## APIs Typed calls between Functions and Servers: schemaless RPC for internal communication, Effect RPC and Effect HTTP for trust boundaries. - [APIs](https://alchemy.run/apis) — Every Function and Server returns { fetch, ...rpcs } — schemaless typed calls are the default for internal communication; Effect RPC and Effect HTTP add schemas where data crosses a trust boundary. - [Schemaless RPC](https://alchemy.run/apis/schemaless) — The pattern behind typed, schema-free RPC — what an RPC member may be, how the typed client arises, how calls travel over the wire, and where the limits are. - [Effect RPC](https://alchemy.run/apis/effect-rpc) — Schema-first RPC for trust boundaries — declare procedures, construct handler Layers, derive typed clients from the same schema. - [Effect HTTP](https://alchemy.run/apis/effect-http) — Schema-validated REST endpoints with an rpc-like typed interface — for trust boundaries where consumers want a plain HTTP client. ## Environments — the same app in many places Stages, credential profiles, auth providers, secrets and config, local development, and CI. - [Stages](https://alchemy.run/environments/stages) — Stages are isolated instances of a Stack — live_sam, dev_sam, staging, prod, pr-42 — each with their own state and physical names. - [Profiles](https://alchemy.run/environments/profiles) — Use profiles to select cloud accounts and credentials for each environment. - [Auth Providers](https://alchemy.run/environments/auth-providers) — An Auth Provider produces the credentials for a cloud's API calls — resolved lazily as Effects, so tokens and role sessions can refresh instead of pinning one static key. - [Custom Auth Provider](https://alchemy.run/environments/custom-auth-provider) — Add profile and CI credentials for a third-party API with a generated AuthProvider. - [Secrets & Config](https://alchemy.run/environments/secrets) — Use effect/Config to read env vars at Construction time and have Alchemy automatically bind them onto the deploy target. - [Local development](https://alchemy.run/environments/local-development) — How alchemy dev provides hot reloading, local execution, and local emulation with per-resource opt-in to real cloud services. - [CI](https://alchemy.run/environments/ci) — Set up CI/CD pipelines for alchemy projects with GitHub Actions, automated deployments, and PR previews — with provider credentials managed as code. ## State Store - [State Store](https://alchemy.run/state-store) — How Alchemy persists resource state between deploys to compute diffs and track infrastructure. - [Custom State Store](https://alchemy.run/state-store/custom-state-store) — Build a Postgres-backed Alchemy state store step by step — implement the StateService interface, plug it into a stack, and test it end-to-end. ## Project structure Scaling the codebase: file conventions for one stack, monorepos for many — single Stack or one per package. - [File layout](https://alchemy.run/project-structure/file-layout) — How to organize an Alchemy project — one file per Resource or Layer, group Resources that travel together by concern, and keep alchemy.run.ts as the composition root. - [Monorepo](https://alchemy.run/project-structure/monorepo) — Two ways to organize an Alchemy monorepo — one Stack at the workspace root, or one Stack per package wired with typed references. ## Testing & observability Tests run against real clouds: the model, the end-to-end walkthrough, provider-lifecycle testing, and the harness reference. - [Testing](https://alchemy.run/testing) — How Alchemy tests work — real clouds by default, local emulators on demand, one Stack deploy per suite, isolated stages, deploy → assert → destroy. - [Testing a Stack](https://alchemy.run/testing/testing-a-stack) — Deploy your real Stack once per suite, drive it over HTTP, tear it down. - [Testing Providers](https://alchemy.run/testing/testing-providers) — Exercise a provider's create, update, replace, and delete paths with test.provider and a scratch in-memory stack. - [Test harness](https://alchemy.run/testing/test-harness) — Reference for alchemy/Test — every helper, hook, and option exposed by Test.make for Bun and Vitest. - [Observability](https://alchemy.run/testing/observability) — Effect emits OpenTelemetry natively and the exporter is a Layer. Provision the receiving end — datasets, monitors, notifiers, alarms — as resources in the same Stack as the code that emits the signals. ## Cloudflare — start here The Cloudflare hub: overview (resources + recipes) and setup (install, account, OAuth vs API token, profiles). - [Cloudflare](https://alchemy.run/cloudflare) — Build and deploy full applications on Cloudflare with Alchemy — one Worker runtime plus resources like Durable Objects, D1, R2, Queues, and Hyperdrive, wired together by typed bindings. - [Setup](https://alchemy.run/cloudflare/setup) — Install Alchemy, create a Cloudflare account, and connect the two — OAuth or API token, saved to a local profile. No environment variables required. ## Cloudflare — tutorial A linear five-part walkthrough from zero to a tested, locally-developed, CI-deployed Cloudflare project. Each part builds on the previous one. - [Part 1: Your First Stack](https://alchemy.run/cloudflare/tutorial/part-1) — Install Alchemy, create a Stack with a Cloudflare R2 Bucket, and deploy it. - [Part 2: Add a Worker](https://alchemy.run/cloudflare/tutorial/part-2) — Create a Cloudflare Worker, bind the R2 Bucket, and implement GET/PUT routes. - [Part 3: Testing](https://alchemy.run/cloudflare/tutorial/part-3) — Write integration tests that deploy your stack and make HTTP requests against your live Worker. - [Part 4: Local Dev](https://alchemy.run/cloudflare/tutorial/part-4) — Run your stack locally with alchemy dev for hot reloading and instant feedback. - [Part 5: CI/CD](https://alchemy.run/cloudflare/tutorial/part-5) — Set up GitHub Actions for automated deployments, PR previews, and remote state — with Cloudflare credentials managed as code. ## Cloudflare — Compute - [Worker Previews](https://alchemy.run/cloudflare/compute/previews) — Deploy a branch or pull request as a first-class Preview of another Worker — its own URL, bindings, and isolated Durable Object state, without touching production traffic. - [Accept WebSockets](https://alchemy.run/cloudflare/compute/hibernatable-websockets) — Accept WebSocket connections in a Durable Object, broadcast between peers, and survive Cloudflare's hibernation. - [Bind to another Worker's Durable Object](https://alchemy.run/cloudflare/compute/cross-worker-durable-object) — Share a Durable Object across multiple Workers — one Worker hosts the runtime, others bind to it by scriptName for a typed RPC stub — and move the host later with the data intact. - [Add a Workflow](https://alchemy.run/cloudflare/compute/add-a-workflow) — Orchestrate durable, multi-step work with Cloudflare Workflows — automatic retries, replayable steps, and at-least-once delivery. - [Run a Container](https://alchemy.run/cloudflare/compute/run-a-container) — Run a long-lived container alongside a Durable Object, expose RPC methods, and proxy HTTP requests to ports inside the container. - [Rate limiting](https://alchemy.run/cloudflare/compute/rate-limiting) — Throttle requests inside a Worker with Cloudflare's Rate Limiting binding — declare the limit on the binding, count arbitrary keys at runtime, handle failures as typed errors. - [Workers Cache](https://alchemy.run/cloudflare/compute/cache) — Serve responses from Cloudflare's edge cache before your Worker even runs — enable it with one yield, control it with standard headers, purge it by tag from inside a handler. - [Browser rendering](https://alchemy.run/cloudflare/compute/browser-rendering) — Attach Cloudflare Browser Rendering to a Worker — run quick actions like markdown and scrape, stream screenshots and PDFs, or drive the raw binding with puppeteer. - [Worker Loader](https://alchemy.run/cloudflare/compute/worker-loader) — Load and run ephemeral Workers at runtime from inline source — each in its own sandboxed isolate, with optional outbound-network control and typed RPC entrypoints. - [Workers for Platforms](https://alchemy.run/cloudflare/compute/workers-for-platforms) — Run your customers' Workers in your own account — create a dispatch namespace, upload user Workers into it, and route requests from a platform Worker with the Get binding. - [Containers](https://alchemy.run/cloudflare/compute/containers) — Cloudflare Containers run long-lived processes beside a Durable Object — declare a typed container class, implement its runtime in a separate file, and alchemy builds the image, pushes it, and wires the DO pairing. - [Durable Objects](https://alchemy.run/cloudflare/compute/durable-objects) — Durable Objects are globally-unique stateful instances with transactional storage — define one as an Effect, persist state per key, expose typed RPC methods, and stream values back to the caller. - [Gradual deployments](https://alchemy.run/cloudflare/compute/gradual-deployments) — Roll out Worker deploys incrementally — upload preview versions, canary a percentage of live traffic, ramp to 100%, pin users to a version during the rollout, and verify which version served each request. - [Python Workers](https://alchemy.run/cloudflare/compute/python-workers) — Deploy Cloudflare Python Workers by pointing main at a .py file — alchemy uploads the modules, vendors pyproject.toml dependencies with uv, and serves them locally through workerd's built-in Pyodide. - [Workers](https://alchemy.run/cloudflare/compute/workers) — Cloudflare Workers are the compute Runtime of every Alchemy app — declare the Worker and its handler in one file, bind resources with full type safety, and call other Workers over schemaless RPC. - [Workflows](https://alchemy.run/cloudflare/compute/workflows) — Cloudflare Workflows run durable multi-step jobs — define a typed workflow class, checkpoint steps with task and sleep, trigger instances from a Worker, and poll status until completion. ## Cloudflare — Frontend - [Frontend frameworks](https://alchemy.run/cloudflare/frontend/frontends) — Deploy Vite, Astro, Next.js, vinext, Nuxt, SvelteKit, Waku, or any static build to Cloudflare Workers with first-class Website resources. - [Vite](https://alchemy.run/cloudflare/frontend/vite) — Deploy any pure-Vite app to Cloudflare Workers with a single resource. - [Static sites](https://alchemy.run/cloudflare/frontend/static-site) — Deploy any build command's output directory as Cloudflare Worker static assets with Cloudflare.Website.StaticSite — custom edge Workers, framework-native local dev, and memoized rebuilds. - [Add a React SPA](https://alchemy.run/cloudflare/frontend/vite-spa) — Ship a React single-page app from the same Stack as your Worker — built with Vite and deployed to Cloudflare in one command. - [TanStack Start](https://alchemy.run/cloudflare/frontend/tanstack-start) — Deploy TanStack Start (React or Solid) to Cloudflare with Cloudflare.Website.Vite — SSR, typed Worker bindings, and HMR dev with real cloud resources. - [Full-stack TanStack Start + RPC + Drizzle](https://alchemy.run/cloudflare/frontend/full-stack-tanstack-rpc-drizzle) — Build a reactive full-stack app on Cloudflare — a TanStack Start UI that drives an Effect RPC backend over Drizzle and Neon Postgres, with browser state wired through Effect 4's native atom RPC. - [React Router](https://alchemy.run/cloudflare/frontend/react-router) — Deploy React Router v7 — including React Server Components — to Cloudflare with Cloudflare.Website.Vite and viteEnvironments. - [Vue](https://alchemy.run/cloudflare/frontend/vue) — Deploy a Vue single-page app to Cloudflare with the Vite resource — one declaration, no Wrangler config. - [Foldkit](https://alchemy.run/cloudflare/frontend/foldkit) — Deploy a Foldkit app to Cloudflare with the Foldkit resource — one declaration, no Wrangler config. - [SolidStart](https://alchemy.run/cloudflare/frontend/solidstart) — Deploy SolidStart to Cloudflare with Cloudflare.Website.Vite — plus the hand-rolled SolidJS SSR variant for full control over the server entry. - [Astro](https://alchemy.run/cloudflare/frontend/astro) — Deploy an Astro site to Cloudflare Workers with Cloudflare.Website.Astro — SSR in the Worker, prerendered pages as static assets, sessions backed by an auto-provisioned KV namespace. - [Next.js](https://alchemy.run/cloudflare/frontend/nextjs) — Deploy a Next.js app to Cloudflare Workers with Cloudflare.Website.Nextjs — the OpenNext pipeline, writable ISR, and wrangler-free local dev. - [Vinext](https://alchemy.run/cloudflare/frontend/vinext) — Deploy vinext to Cloudflare Workers with the shared Website API, native local development, and KV-backed caching. - [Nuxt](https://alchemy.run/cloudflare/frontend/nuxt) — Deploy a Nuxt app to Cloudflare Workers with Cloudflare.Website.Nuxt — nitro's cloudflare_module preset, native nuxt.config.ts loading, and wrangler-free local dev. - [SvelteKit](https://alchemy.run/cloudflare/frontend/sveltekit) — Deploy a SvelteKit app to Cloudflare Workers with Cloudflare.Website.SvelteKit — a wrangler-free in-memory adapter, real bindings on platform.env, and full-HMR local dev. - [Waku](https://alchemy.run/cloudflare/frontend/waku) — Deploy a Waku app to Cloudflare Workers with Cloudflare.Website.Waku — RSC server in the Worker, SSG pages as static assets, and a custom-entry seam for Durable Objects. - [Octane](https://alchemy.run/cloudflare/frontend/octane) — Deploy an OctaneJS fullstack app to Cloudflare Workers with Cloudflare.Website.Octane — native Octane and Vite configuration, no hosting adapter or Wrangler file required. ## Cloudflare — APIs - [Schemaless RPC](https://alchemy.run/cloudflare/apis/schemaless-rpc) — Typed RPC between Workers, Durable Objects, and Containers with no schema — bind the class, get the client. - [Effect HTTP API](https://alchemy.run/cloudflare/apis/effect-http-api) — Build a schema-validated HTTP API with Effect's HttpApi module and deploy it as a Cloudflare Worker. - [Effect RPC](https://alchemy.run/cloudflare/apis/effect-rpc) — Build a typed RPC API with Effect's Rpc module and deploy it as a Cloudflare Worker. ## Cloudflare — Data - [Store Git Repos with Artifacts](https://alchemy.run/cloudflare/data/artifacts) — Use Cloudflare Artifacts to create Git repos at runtime and hand out clone tokens, all from a tiny Worker. - [Add Drizzle ORM](https://alchemy.run/cloudflare/data/drizzle) — Deploy a Cloudflare Worker with Drizzle queries, Hyperdrive connections, and reviewed, committed migrations on Neon or PlanetScale. - [Branch from a shared database](https://alchemy.run/cloudflare/data/branch-from-shared-database) — Have ephemeral PR-preview stages reference a long-lived Neon or PlanetScale database from a staging stage instead of provisioning their own — fast previews, cheap branches, no extra clusters. - [D1](https://alchemy.run/cloudflare/data/d1) — Cloudflare D1 is serverless SQLite — create a database, apply migrations on deploy, and query it from a Worker through a typed binding. - [Drizzle on D1](https://alchemy.run/cloudflare/data/d1-drizzle) — Deploy committed SQLite migrations to D1 and query the database from a Worker with Drizzle. - [Hyperdrive](https://alchemy.run/cloudflare/data/hyperdrive) — Cloudflare Hyperdrive pools connections to your external Postgres or MySQL database at the edge — provision a database (Neon or PlanetScale), front it with Hyperdrive, and bind the connection into your Worker. - [KV](https://alchemy.run/cloudflare/data/kv) — Cloudflare Workers KV is edge key-value storage — create a namespace, bind it into a Worker with read/write-scoped bindings, and get/put values with metadata. - [Prisma ORM with Postgres](https://alchemy.run/cloudflare/data/prisma) — Deploy Prisma ORM v8 on Cloudflare Workers with Neon Postgres, Hyperdrive, controlled migrations, and Effect-native queries. - [R2](https://alchemy.run/cloudflare/data/r2) — Cloudflare R2 is object storage — create a bucket, bind it into a Worker with read/write-scoped bindings, and stream objects in and out. - [R2 presigned URLs](https://alchemy.run/cloudflare/data/r2-presigned-urls) — Mint presigned R2 URLs so browsers upload and download objects directly, with the same code in alchemy dev and in production, from Effect-native or async Workers. - [Shared database across stages](https://alchemy.run/cloudflare/data/shared-database) — Have ephemeral PR-preview stages reference a long-lived Neon or PlanetScale database from a staging stage instead of provisioning their own — fast previews, copy-on-write branches, no extra clusters. ## Cloudflare — Messaging & events - [Scheduled jobs with Cron Triggers](https://alchemy.run/cloudflare/messaging/cron) — Run Worker code on a schedule — declare a cron expression with an Effect handler, deploy it, and prove the trigger fires with a bounded polling test. - [React to GitHub events from a Worker](https://alchemy.run/cloudflare/messaging/github-events) — Subscribe a Cloudflare Worker to GitHub repository webhooks with typed payloads — alchemy provisions the webhook and verifies delivery signatures. - [Queues](https://alchemy.run/cloudflare/messaging/queues) — Cloudflare Queues give you reliable, at-least-once message delivery between Workers — a WriteQueue producer binding on one side and an Effect-style consumeQueueMessages handler with automatic ack/retry on the other. ## Cloudflare — Email - [Send & receive email](https://alchemy.run/cloudflare/email/send-and-receive) — Enable Email Routing on a zone, verify destination addresses, forward inbound mail with rules and a catch-all, and send email from a Worker with the send_email binding. - [Receive email in a Worker](https://alchemy.run/cloudflare/email/email-worker) — Receive inbound mail in a Cloudflare Worker with Cloudflare.email({ zone }).subscribe(...) — auto-creates routing and forwarding rules. - [Email](https://alchemy.run/cloudflare/email) — Cloudflare Email Routing turns a zone into a mail endpoint — enable routing, verify destinations, forward with rules and a catch-all, hand mail to a Worker, and send from Workers with the send_email binding. ## Cloudflare — AI - [Run Workers AI models](https://alchemy.run/cloudflare/ai/workers-ai) — Bind Workers AI into your Worker with Cloudflare.Workers.AI — run inference and list models directly, or turn the binding into a typed Effect LanguageModel, no gateway required. - [Effect AI](https://alchemy.run/cloudflare/ai/effect-ai) — Wire Effect's LanguageModel and Chat services into a Cloudflare Worker — read API keys with effect/Config, provide the model layer to your handler, plug in persistence. - [Add an AI Gateway](https://alchemy.run/cloudflare/ai/ai-gateway) — Wire an AI Gateway into your Worker, turn it into a typed Effect LanguageModel, and run generations and streams through Workers AI with caching, rate limiting, and logs. - [Add AI Search (AutoRAG)](https://alchemy.run/cloudflare/ai/ai-search) — Stand up a Cloudflare AI Search (AutoRAG) pipeline over an R2 bucket with one Search call, bind it into your Worker as a typed Effect client, and answer questions over your own documents. - [Vector search with Vectorize](https://alchemy.run/cloudflare/ai/vectorize) — Create a Vectorize index, bind it to a Worker with SearchIndex, and run filtered nearest-neighbor queries over vector embeddings. - [Build a release-automation agent](https://alchemy.run/cloudflare/ai/release-agent) — Case study of the cloudflare-agent example — GitHub push events routed through a Worker to a per-release Durable Object that drives an AI agent with container-backed tools. ## Cloudflare — Security & secrets - [Secrets Store & auth tokens](https://alchemy.run/cloudflare/security/secrets-store) — Store secrets in Cloudflare's account-level Secrets Store, generate stable tokens with Alchemy.Random, and read them in a Worker through the ReadSecret binding. - [Protect a Worker with Access](https://alchemy.run/cloudflare/security/access) — Put Cloudflare Access in front of a Worker with the access prop — per-Worker policies, shared applications, ctx.access identity at runtime, and a local dev simulation. - [Turnstile CAPTCHA](https://alchemy.run/cloudflare/security/turnstile) — Manage Cloudflare Turnstile widgets as resources — deploy a widget, embed its sitekey in HTML, and verify tokens server-side with the redacted secret. - [Secrets & env](https://alchemy.run/cloudflare/security/secrets-env) — Bind env vars and secrets to Workers with effect/Config, generate stable tokens with Alchemy.Random, and graduate to Secrets Store when secrets are shared across Workers. ## Cloudflare — Observability - [Native Workers tracing](https://alchemy.run/cloudflare/observability/workers-tracing) — Mirror Effect spans into Cloudflare Workers Observability with Cloudflare.Telemetry() — the same Layer shape as Axiom.Telemetry, with Cloudflare owning sampling and export. - [Ship Worker telemetry to Axiom](https://alchemy.run/cloudflare/observability/axiom-observability) — Declare Axiom datasets, a least-privilege ingest token, and monitors in the same Stack as the Worker that emits the telemetry — or let Cloudflare push Workers Logs to Axiom natively. - [Analytics Engine](https://alchemy.run/cloudflare/observability/analytics-engine) — Write time-series data points from a Worker with Workers Analytics Engine — declare a dataset, bind it with WriteDataset, and query it later over Cloudflare's SQL API. ## Cloudflare — Networking - [Custom domains & routes](https://alchemy.run/cloudflare/networking/custom-domains) — Serve Workers from your own domain — create or adopt a Zone, attach custom domains, route hostname patterns, manage DNS records, and control the workers.dev subdomain. - [Expose private origins with Tunnel](https://alchemy.run/cloudflare/networking/tunnel) — Connect a private origin to Cloudflare's edge with a Tunnel, declare its ingress rules as a Configuration resource, and point DNS at it with a proxied CNAME. - [Domains & DNS](https://alchemy.run/cloudflare/networking/domains) — Manage Cloudflare zones, DNS records, DNSSEC, and zone settings as resources — and safely adopt the domains you already have. ## Prisma — start here - [Prisma](https://alchemy.run/prisma) — Prisma Postgres and Prisma Compute — projects, databases, connections, and deployed apps as Stack resources, with a zero-config local database in dev. - [Setup](https://alchemy.run/prisma/setup) — Connect alchemy to Prisma — account, service tokens, and profiles. ## Prisma — tutorial A four-part walkthrough: a Project, an Effect-native Compute API, Postgres, and a Vite frontend. - [Part 1: Your First Project](https://alchemy.run/prisma/tutorial/part-1) — Install Alchemy, configure Prisma credentials, and deploy your first Project. - [Part 2: An HTTP API](https://alchemy.run/prisma/tutorial/part-2) — Deploy an Effect-native Prisma Compute service and add an HTTP health endpoint. - [Part 3: Query Postgres](https://alchemy.run/prisma/tutorial/part-3) — Create Prisma Postgres, bind its connection to Compute, and query it with Effect SQL. - [Part 4: A Vite Frontend](https://alchemy.run/prisma/tutorial/part-4) — Connect a Vite frontend to your Prisma API, develop locally, and destroy the tutorial resources. ## Prisma — Compute - [Apps](https://alchemy.run/prisma/compute/apps) — Prisma Compute apps as Stack resources — framework builds or Effect-native services, env wiring, custom domains, and a local dev command. - [Deployments](https://alchemy.run/prisma/compute/deployments) — The fail-closed Compute deployment lifecycle — health-checked promotion, rollback recovery, old-generation cleanup, and env-only redeploys. ## Prisma — Data - [Branches](https://alchemy.run/prisma/data/branches) — Prisma branches group databases under git-style names — preview branches per stage, default-branch promotion, and database attachment. - [Buckets](https://alchemy.run/prisma/data/buckets) — Prisma Buckets provision S3-compatible object storage inside a project, and Bucket access keys mint the S3 credentials — access key, one-time secret, endpoint, and the provider-side bucket name. - [Connections](https://alchemy.run/prisma/data/connections) — Prisma Connections materialize database credentials — a conventional databaseUrl, direct and pooled connection strings, parsed origins for Hyperdrive, and the Connect runtime binding. - [Drizzle Postgres on Prisma Compute](https://alchemy.run/prisma/data/drizzle-postgres) — Use Alchemy's Prisma hosting provider to run a Drizzle API against Prisma Postgres. - [Postgres](https://alchemy.run/prisma/data/postgres) — Prisma Postgres as Stack resources — projects, databases, branch attachment, and a zero-config local database under alchemy dev. ## Prisma — Frontend - [Websites](https://alchemy.run/prisma/frontend/websites) — Deploy Vite, Astro, Next.js, Nuxt, React Router, SolidStart, SvelteKit, TanStack Start, Waku, Octane, Foldkit, Vocs, or any static build to Prisma Compute. - [Vite](https://alchemy.run/prisma/frontend/vite) — Deploy a Vite SPA to Prisma Compute with Prisma.Website.Vite — static files served on Bun and Vite's native dev server locally. - [Static sites](https://alchemy.run/prisma/frontend/static-site) — Deploy any static build to Prisma Compute with Prisma.Website.StaticSite — a shell command, output directory, and Bun static-file server. - [React Router](https://alchemy.run/prisma/frontend/react-router) — Deploy React Router v7 framework apps to Prisma Compute with Prisma.Website.ReactRouter — SSR on Bun and native Vite dev locally. - [Foldkit](https://alchemy.run/prisma/frontend/foldkit) — Deploy Foldkit to Prisma Compute with Prisma.Website.Foldkit — a Vite SPA served on Bun, deep-link fallback, and native HMR locally. - [TanStack Start](https://alchemy.run/prisma/frontend/tanstack-start) — Deploy TanStack Start to Prisma Compute with Prisma.Website.TanStackStart — React or Solid SSR on Bun, with native Vite dev locally. - [Next.js](https://alchemy.run/prisma/frontend/nextjs) — Deploy Next.js to Prisma Compute with Prisma.Website.Nextjs — a normal Next server on Bun, not OpenNext, and next dev locally. - [Vinext](https://alchemy.run/prisma/frontend/vinext) — Deploy vinext to Prisma Compute with the shared Website API, native local development, and traced runtime dependencies. - [Nuxt](https://alchemy.run/prisma/frontend/nuxt) — Deploy Nuxt to Prisma Compute with Prisma.Website.Nuxt — Nitro's Node target running on Bun and Nuxt's own dev server locally. - [Vocs](https://alchemy.run/prisma/frontend/vocs) — Deploy Vocs documentation to Prisma Compute with Prisma.Website.Vocs — static assets and Waku RSC on Bun, with Vocs dev locally. - [SolidStart](https://alchemy.run/prisma/frontend/solidstart) — Deploy SolidStart to Prisma Compute with Prisma.Website.SolidStart — Nitro's Node target on Bun and SolidStart's native Vite dev server locally. - [Astro](https://alchemy.run/prisma/frontend/astro) — Deploy Astro SSR or a fully static site to Prisma Compute with Prisma.Website.Astro, running on Bun with native Astro dev locally. - [SvelteKit](https://alchemy.run/prisma/frontend/sveltekit) — Deploy SvelteKit to Prisma Compute with Prisma.Website.SvelteKit — SSR and prerendered assets on Bun, with native Vite dev locally. - [Waku](https://alchemy.run/prisma/frontend/waku) — Deploy Waku to Prisma Compute with Prisma.Website.Waku — React Server Components and static pages on Bun, with Waku's native dev server locally. - [Octane](https://alchemy.run/prisma/frontend/octane) — Deploy OctaneJS to Prisma Compute with Prisma.Website.Octane — the Node target on Bun, SSR plus client assets, and native Vite dev locally. ## Prisma — Guides - [Connect from Cloudflare Workers](https://alchemy.run/prisma/guides/cloudflare-workers) — Two ways to reach Prisma Postgres from a Worker — the Connect binding for credentials, or Hyperdrive in front of the direct origin for edge-pooled SQL. ## AWS — start here The AWS hub: overview (runtimes + resources + recipes), setup (credentials, profiles, region), and the Lambda vs ECS vs EKS vs EC2 decision page. - [AWS](https://alchemy.run/aws) — Build AWS applications with Alchemy — a runtime (usually Lambda) plus typed resources, wired together by bindings that mint least-privilege IAM policies. - [Setup](https://alchemy.run/aws/setup) — Connect Alchemy to AWS with SSO, stored access keys, or CI environment credentials. - [Choosing a runtime](https://alchemy.run/aws/compute/choosing-a-runtime) — Lambda vs ECS vs EKS vs EC2 for Alchemy apps — cold starts, cost shape, packaging, and how much of each Alchemy currently covers. ## AWS — tutorial A linear five-part walkthrough from zero to a tested, CI-deployed AWS project. Each part builds on the previous one. - [Part 1: Your First Stack](https://alchemy.run/aws/tutorial/part-1) — Install Alchemy, create a Stack with an AWS S3 Bucket, and deploy it. - [Part 2: Add a Lambda](https://alchemy.run/aws/tutorial/part-2) — Create an AWS Lambda Function with a public URL, bind the S3 Bucket, and implement GET/PUT routes. - [Part 3: Testing](https://alchemy.run/aws/tutorial/part-3) — Write integration tests that deploy your stack and make HTTP requests against your live Lambda Function URL. - [Part 4: Stages](https://alchemy.run/aws/tutorial/part-4) — Deploy isolated dev, staging, and prod instances of your stack with --stage, and tune resources per stage. - [Part 5: CI/CD](https://alchemy.run/aws/tutorial/part-5) — Set up GitHub Actions for automated AWS deployments and PR previews — with OIDC credentials provisioned as code. ## AWS — Compute - [Lambda MicroVMs](https://alchemy.run/aws/compute/microvms) — Build a Firecracker MicroVM image from TypeScript or a Dockerfile, then launch and drive isolated stateful instances from a Lambda Function with typed lifecycle bindings and RPC. - [Choosing a runtime](https://alchemy.run/aws/compute/choosing-a-runtime) — Lambda vs ECS vs EKS vs EC2 for Alchemy apps — cold starts, cost shape, packaging, and how much of each Alchemy currently covers. - [EC2](https://alchemy.run/aws/compute/ec2) — Launch virtual machines with the Instance resource — as a raw compute primitive, or hosting a bundled long-lived Effect program served straight off the box. - [ECS](https://alchemy.run/aws/compute/ecs) — Run containers on AWS with ECS and Fargate — Task definitions that run to completion, Services that keep containers running behind a load balancer, with images bundled from an Effect program, built from your Dockerfile, or mirrored from a registry. - [EKS](https://alchemy.run/aws/compute/eks) — Stand up an EKS Auto Mode cluster on a Network and run containers on it — Deployments for servers, Jobs for run-to-completion work, Manifests for everything else. No YAML, no kubectl. - [HyperPod](https://alchemy.run/aws/compute/hyperpod) — Provision SageMaker HyperPod clusters — Slurm or EKS orchestrated — and run ML workloads on them with sbatch, raw manifests, or effectful Jobs with task governance. - [Lambda](https://alchemy.run/aws/compute/lambda) — Stand up an AWS Lambda Function from a single Effect, expose it over a Function URL, and call it from a test. ## AWS — Frontend - [Websites](https://alchemy.run/aws/frontend/websites) — Deploy Vite, Astro, Next.js, vinext, Nuxt, React Router, SvelteKit, TanStack Start, Waku, Octane, or any static build to AWS with first-class Website resources. - [Vite](https://alchemy.run/aws/frontend/vite) — Deploy a plain Vite app to AWS with AWS.Website.Vite — the vite build output on S3 behind CloudFront, SPA fallback at the edge, and Vite's own dev server under alchemy dev. - [Foldkit](https://alchemy.run/aws/frontend/foldkit) — Deploy a Foldkit app to AWS with AWS.Website.Foldkit — the client build on S3 + CloudFront, SPA deep links by default, and Foldkit's own Vite dev server under alchemy dev. - [Static sites](https://alchemy.run/aws/frontend/static-site) — Ship a static site to S3 + CloudFront with AWS.Website.StaticSite — build-step support, Router composition, and cache invalidation on deploy. - [React SPA](https://alchemy.run/aws/frontend/vite-spa) — Deploy a React single-page app to AWS with AWS.Website.Vite — the Vite build on S3 + CloudFront, deep links answered by index.html out of the box, and Vite's own dev server under alchemy dev. - [Vue](https://alchemy.run/aws/frontend/vue) — Deploy a Vue single-page app to AWS with AWS.Website.Vite — S3 + CloudFront, deep links that work by default, and Vue's own Vite dev server under alchemy dev. - [React Router](https://alchemy.run/aws/frontend/react-router) — Deploy React Router v7 (framework mode) to AWS with AWS.Website.ReactRouter — SSR on a streaming Lambda Function URL, client assets on S3 + CloudFront, and React Router's own Vite dev server under alchemy dev. - [TanStack Start](https://alchemy.run/aws/frontend/tanstack-start) — Deploy TanStack Start (React or Solid) to AWS with AWS.Website.TanStackStart — SSR on a streaming Lambda Function URL, client assets on S3 + CloudFront, and TanStack Start's own Vite dev server under alchemy dev. - [Next.js](https://alchemy.run/aws/frontend/nextjs) — Deploy a Next.js app to AWS with AWS.Website.Nextjs — the OpenNext serverless topology with streaming SSR, image optimization, and ISR wiring, plus next dev under alchemy dev. - [Vinext](https://alchemy.run/aws/frontend/vinext) — Deploy vinext to AWS with the shared Website API, native local development, and a platform-specific data cache. - [Nuxt](https://alchemy.run/aws/frontend/nuxt) — Deploy a Nuxt app to AWS with AWS.Website.Nuxt — nitro's aws-lambda preset on a streaming Lambda Function URL, S3 assets behind CloudFront, and Nuxt's own dev server under alchemy dev. - [SolidStart](https://alchemy.run/aws/frontend/solidstart) — Deploy a SolidStart app to AWS with AWS.Website.SolidStart — nitro's aws-lambda preset on a streaming Lambda Function URL, S3 assets behind CloudFront, and SolidStart's own Vite dev server under alchemy dev. - [Astro](https://alchemy.run/aws/frontend/astro) — Deploy an Astro app to AWS with AWS.Website.Astro — SSR on a streaming Lambda Function URL, static output on S3 + CloudFront, and Astro's own dev server under alchemy dev. - [SvelteKit](https://alchemy.run/aws/frontend/sveltekit) — Deploy a SvelteKit app to AWS with AWS.Website.SvelteKit — SSR on a streaming Lambda Function URL, assets and prerendered pages on S3 + CloudFront, and Kit's own dev server under alchemy dev. - [Waku](https://alchemy.run/aws/frontend/waku) — Deploy a Waku app to AWS with AWS.Website.Waku — RSC server on a streaming Lambda Function URL, SSG pages and assets on S3 + CloudFront, and Waku's own dev server under alchemy dev. - [Octane](https://alchemy.run/aws/frontend/octane) — Deploy an OctaneJS app to AWS with AWS.Website.Octane — SSR on a streaming Lambda Function URL, assets on S3 + CloudFront, and Octane's own Vite dev server under alchemy dev. - [Full-stack TanStack Start + RPC + Drizzle](https://alchemy.run/aws/frontend/full-stack-tanstack-rpc-drizzle) — Build a reactive full-stack app on AWS — a TanStack Start UI on CloudFront and Lambda that drives an Effect RPC Lambda over Drizzle and Aurora DSQL, with browser state wired through Effect 4's native atom RPC. ## AWS — APIs - [Schemaless RPC](https://alchemy.run/aws/apis/schemaless-rpc) — Typed RPC from a Lambda Function into a MicroVM with no schema — declare the image's Shape, connect, get the client. - [Effect HTTP API on Lambda](https://alchemy.run/aws/apis/effect-http-api) — Build a schema-validated HTTP API with Effect's HttpApi module and deploy it as an AWS Lambda Function behind a Function URL. - [Effect RPC on Lambda](https://alchemy.run/aws/apis/effect-rpc) — Build a typed RPC API with Effect's Rpc module and deploy it as an AWS Lambda Function behind a Function URL. - [REST API (API Gateway v1)](https://alchemy.run/aws/apis/api-gateway) — Expose a Lambda with a regional Amazon API Gateway REST API using RestApi, Resource, Method, Deployment, and Stage primitives. ## AWS — Data - [Drizzle + Aurora DSQL](https://alchemy.run/aws/data/drizzle-dsql) — Drizzle on Lambda with Aurora DSQL, a non-admin database role, verified TLS, and an explicit DSQL migration boundary. - [Drizzle + Aurora PostgreSQL](https://alchemy.run/aws/data/drizzle-aurora) — Drizzle on Lambda with private Aurora PostgreSQL, IAM authentication, verified TLS, and reviewed SQL migrations. - [DynamoDB](https://alchemy.run/aws/data/dynamodb) — Add a DynamoDB Table, bind GetItem and PutItem to your Lambda, and serve a typed key/value HTTP API backed by DynamoDB. - [RDS & Aurora](https://alchemy.run/aws/data/rds) — Stand up an Aurora cluster in one call with the Aurora helper, connect from Lambda over the Connect binding with pg, or skip connections entirely with the Data API. - [S3](https://alchemy.run/aws/data/s3) — Add an S3 Bucket to your Stack, bind PutObject and GetObject as runtime capabilities, and let Alchemy mint the IAM policy for you. ## AWS — Messaging & events - [Process DynamoDB Streams](https://alchemy.run/aws/messaging/dynamodb-streams) — Enable a DynamoDB Stream on your table and consume change records as a typed Effect Stream from the same Lambda. - [React to S3 Events](https://alchemy.run/aws/messaging/s3-events) — Subscribe a Lambda Function to S3 bucket notifications, process them as an Effect Stream, and let Alchemy wire up the IAM and event-source plumbing. - [EventBridge & Scheduler](https://alchemy.run/aws/messaging/eventbridge) — Route application and AWS events through EventBridge buses and rules, consume them in Lambda as typed streams, and run cron/rate schedules against Lambda, SQS, and ECS with EventBridge Scheduler. - [Kinesis](https://alchemy.run/aws/messaging/kinesis) — Add a Kinesis Data Stream, publish records from one Lambda, and consume them in order from another — wired through the same Stream-shaped event source. - [SNS](https://alchemy.run/aws/messaging/sns) — Create an SNS Topic, publish to it from a Lambda with the Publish binding, fan messages out to SQS queues, and consume notifications as a typed Stream. - [SQS](https://alchemy.run/aws/messaging/sqs) — Add an SQS Queue, publish messages from your Lambda, and consume them from a second consumer Lambda — all wired through Alchemy bindings. ## AWS — Email - [Email receiving](https://alchemy.run/aws/email/receiving) — Receive inbound email with SES — rule sets and rules that store mail in S3, fan out to SNS, invoke a Lambda, or bounce it, plus IP filters and the active rule set pointer. - [Sending & managing email](https://alchemy.run/aws/email/sending) — Send email with SES — verify identities, send from a Lambda with the SendEmail binding, manage contact lists, tenants, dedicated IP pools, account settings, and deliverability insights. ## AWS — Security & secrets - [Secrets & env](https://alchemy.run/aws/security/secrets-env) — Deliver API keys from .env to a Lambda with effect/Config, and graduate to AWS Secrets Manager when the secret is a shared, generated, or rotated cloud resource. ## AWS — Observability - [CloudWatch](https://alchemy.run/aws/observability/cloudwatch) — Declare CloudWatch dashboards as structured widget documents and metric alarms that fire SNS topics — versioned next to the Lambda functions and queues they observe. ## AWS — Networking - [Custom domains with Route53 + ACM](https://alchemy.run/aws/networking/custom-domains) — Serve your site or API from your own domain — DNS-validated ACM certificates, Route 53 alias records, and the domain prop on Website resources. - [VPC & networking](https://alchemy.run/aws/networking) — The Network helper for a production-shaped VPC in one call, and the full set of EC2 networking primitives — VPCs, subnets, gateways, routes, security groups, and endpoints — for explicit control. ## Fly — start here The Fly hub: overview (Apps, Machines, Services, Sprites) and setup (org, API token, profile). - [Fly](https://alchemy.run/fly) — Deploy Effect programs to Fly.io as Apps, Machines, Services, and Sprites. - [Setup](https://alchemy.run/fly/setup) — Create a Fly org, generate an API token, and store it in a profile. ## Fly — SQL - [Postgres](https://alchemy.run/fly/data/postgres) — A billed Managed Postgres cluster. Bind Fly.ConnectPostgres and query with Drizzle or SQL. - [Drizzle Postgres on Fly](https://alchemy.run/fly/data/drizzle-postgres) — Connect a Fly Service to Managed Postgres and deploy reviewed Drizzle migrations. ## Fly — Frontend - [Websites](https://alchemy.run/fly/frontend/websites) — Deploy Vite, Astro, Next.js, vinext, Nuxt, React Router, SolidStart, SvelteKit, TanStack Start, Waku, Octane, Foldkit, Vocs, or any static build to Fly with first-class Website resources. - [Vite](https://alchemy.run/fly/frontend/vite) — Deploy a Vite SPA to Fly with Fly.Website.Vite — static assets on a Node Machine, fly.dev (or your domain) over HTTPS, and Vite's own dev server under alchemy dev. - [Static sites](https://alchemy.run/fly/frontend/static-site) — Deploy a static site to Fly with Fly.Website.StaticSite — a build command, a Node static-file server on a Machine, and https://{app}.fly.dev (or your hostname) on deploy. - [React Router](https://alchemy.run/fly/frontend/react-router) — Deploy React Router v7 (framework mode) to Fly with Fly.Website.ReactRouter — SSR on a Machine, client assets baked into the image, and React Router's own Vite dev server under alchemy dev. - [Foldkit](https://alchemy.run/fly/frontend/foldkit) — Deploy a Foldkit app to Fly with Fly.Website.Foldkit — a client-only Vite SPA on a Node static-file Service, fly.dev over shared IPv4, and Vite's own dev server under alchemy dev. - [TanStack Start](https://alchemy.run/fly/frontend/tanstack-start) — Deploy TanStack Start (React or Solid) to Fly with Fly.Website.TanStackStart — SSR on a Machine, client assets baked into the image, and TanStack Start's own Vite dev server under alchemy dev. - [Next.js](https://alchemy.run/fly/frontend/nextjs) — Deploy a Next.js app to Fly with Fly.Website.Nextjs — next build plus a Node next({ dev: false }) Machine, and next dev under alchemy dev. - [Vinext](https://alchemy.run/fly/frontend/vinext) — Deploy vinext to Fly with the shared Website API, native local development, and a platform-specific data cache. - [Nuxt](https://alchemy.run/fly/frontend/nuxt) — Deploy a Nuxt app to Fly with Fly.Website.Nuxt — nitro's node preset on a Machine, assets baked into the image, and Nuxt's own dev server under alchemy dev. - [Vocs](https://alchemy.run/fly/frontend/vocs) — Deploy a Vocs docs site to Fly with Fly.Website.Vocs — prerendered HTML on a Node static-file server, extensionless routes, and Vocs' own dev server under alchemy dev. - [SolidStart](https://alchemy.run/fly/frontend/solidstart) — Deploy a SolidStart app to Fly with Fly.Website.SolidStart — nitro's node preset on a Machine, prerendered pages baked into the image, and SolidStart's own Vite dev server under alchemy dev. - [Astro](https://alchemy.run/fly/frontend/astro) — Deploy an Astro app to Fly with Fly.Website.Astro — Node SSR on a Machine, static output as a file server, and Astro's own dev server under alchemy dev. - [SvelteKit](https://alchemy.run/fly/frontend/sveltekit) — Deploy a SvelteKit app to Fly with Fly.Website.SvelteKit — kit SSR on a Machine, prerendered assets baked into the image, and Kit's own dev server under alchemy dev. - [Waku](https://alchemy.run/fly/frontend/waku) — Deploy a Waku app to Fly with Fly.Website.Waku — RSC server on a Machine, SSG pages baked into the image, and Waku's own dev server under alchemy dev. - [Octane](https://alchemy.run/fly/frontend/octane) — Deploy an OctaneJS app to Fly with Fly.Website.Octane — SSR on a Machine, client assets baked into the image, and Octane's own Vite dev server under alchemy dev. ## Hetzner — start here The Hetzner hub: overview (Servers and Services) and setup (project, API token, profile). - [Hetzner](https://alchemy.run/hetzner) — Build applications on Hetzner Cloud with Alchemy — Servers running your Effect programs as Services, plus volumes, networks, firewalls, load balancers, and DNS, all in one typed program. - [Setup](https://alchemy.run/hetzner/setup) — Install Alchemy and connect it to Hetzner Cloud — create a project, generate an API token, and store it in a profile. ## Hetzner — SQL - [Drizzle Postgres on Hetzner](https://alchemy.run/hetzner/data/drizzle-postgres) — Run a Drizzle API on a Hetzner Server with external Neon Postgres and reviewed SQL migrations. ## Hetzner — Frontend - [Websites](https://alchemy.run/hetzner/frontend/websites) — Deploy Vite, Astro, Next.js, vinext, Nuxt, React Router, SolidStart, SvelteKit, TanStack Start, Waku, Octane, Foldkit, Vocs, or any static build to Hetzner with first-class Website resources. - [Vite](https://alchemy.run/hetzner/frontend/vite) — Deploy a Vite SPA to Hetzner with Hetzner.Website.Vite — static assets as a systemd unit on a Server, http://{ipv4}:3000, and Vite's own dev server under alchemy dev. - [Static sites](https://alchemy.run/hetzner/frontend/static-site) — Deploy a static site to Hetzner with Hetzner.Website.StaticSite — a build command, a systemd unit on a Server, and http://{ipv4}:3000 (or your hostname) on deploy. - [React Router](https://alchemy.run/hetzner/frontend/react-router) — Deploy React Router v7 (framework mode) to Hetzner with Hetzner.Website.ReactRouter — SSR as a systemd unit on port 3000, client assets baked into the unit, and React Router's own Vite dev server under alchemy dev. - [Foldkit](https://alchemy.run/hetzner/frontend/foldkit) — Deploy a Foldkit app to Hetzner with Hetzner.Website.Foldkit — a client-only Vite SPA as a systemd unit on a Cloud Server, and Vite's own dev server under alchemy dev. - [TanStack Start](https://alchemy.run/hetzner/frontend/tanstack-start) — Deploy TanStack Start (React or Solid) to Hetzner with Hetzner.Website.TanStackStart — SSR as a systemd unit on port 3000, client assets baked into the unit, and TanStack Start's own Vite dev server under alchemy dev. - [Next.js](https://alchemy.run/hetzner/frontend/nextjs) — Deploy a Next.js app to Hetzner with Hetzner.Website.Nextjs — next build plus a Node next({ dev: false }) systemd unit, and next dev under alchemy dev. - [Vinext](https://alchemy.run/hetzner/frontend/vinext) — Deploy vinext to Hetzner with the shared Website API, native local development, and a platform-specific data cache. - [Nuxt](https://alchemy.run/hetzner/frontend/nuxt) — Deploy a Nuxt app to Hetzner with Hetzner.Website.Nuxt — nitro's node preset as a systemd unit on port 3000, and Nuxt's own dev server under alchemy dev. - [Vocs](https://alchemy.run/hetzner/frontend/vocs) — Deploy a Vocs docs site to Hetzner with Hetzner.Website.Vocs — prerendered HTML on a systemd unit, extensionless routes, and Vocs' own dev server under alchemy dev. - [SolidStart](https://alchemy.run/hetzner/frontend/solidstart) — Deploy a SolidStart app to Hetzner with Hetzner.Website.SolidStart — nitro's node preset as a systemd unit on port 3000, prerendered pages baked into the unit, and SolidStart's own Vite dev server under alchemy dev. - [Astro](https://alchemy.run/hetzner/frontend/astro) — Deploy an Astro app to Hetzner with Hetzner.Website.Astro — Node SSR as a systemd unit on a Server, static output as a file server, and Astro's own dev server under alchemy dev. - [SvelteKit](https://alchemy.run/hetzner/frontend/sveltekit) — Deploy a SvelteKit app to Hetzner with Hetzner.Website.SvelteKit — kit SSR as a systemd unit on port 3000, prerendered assets baked into the unit, and Kit's own dev server under alchemy dev. - [Waku](https://alchemy.run/hetzner/frontend/waku) — Deploy a Waku app to Hetzner with Hetzner.Website.Waku — RSC server as a systemd unit on port 3000, SSG pages baked into the unit, and Waku's own dev server under alchemy dev. - [Octane](https://alchemy.run/hetzner/frontend/octane) — Deploy an OctaneJS app to Hetzner with Hetzner.Website.Octane — SSR as a systemd unit on port 3000, client assets baked into the unit, and Octane's own Vite dev server under alchemy dev. ## Railway — start here The Railway hub: overview (Projects, Services, databases) and setup (workspace, API token, profile). - [Railway](https://alchemy.run/railway) — Deploy Effect programs to Railway as Projects, Services, databases, Volumes, and Buckets. - [Setup](https://alchemy.run/railway/setup) — Create a Railway workspace, generate an account API token, and store it in a profile. ## Railway — SQL - [Postgres](https://alchemy.run/railway/data/postgres) — Official SSL Postgres in a Project. Bind Railway.ConnectPostgres and query with Drizzle or SQL. - [MySQL](https://alchemy.run/railway/data/mysql) — Official MySQL in a Project. Bind Railway.ConnectMySQL and query with Drizzle or SQL. - [Drizzle Postgres on Railway](https://alchemy.run/railway/data/drizzle-postgres) — Query Railway Postgres from an Effect-native Service and apply reviewed Drizzle migrations separately. - [Drizzle MySQL on Railway](https://alchemy.run/railway/data/drizzle-mysql) — Connect an Effect-native Railway Service to MySQL and deploy committed Drizzle migrations. ## Prisma — SQL - [Postgres](https://alchemy.run/prisma/data/postgres) — Prisma Postgres as Stack resources — projects, databases, branch attachment, and a zero-config local database under alchemy dev. - [Branches](https://alchemy.run/prisma/data/branches) — Prisma branches group databases under git-style names — preview branches per stage, default-branch promotion, and database attachment. - [Connections](https://alchemy.run/prisma/data/connections) — Prisma Connections materialize database credentials — a conventional databaseUrl, direct and pooled connection strings, parsed origins for Hyperdrive, and the Connect runtime binding. - [Drizzle Postgres on Prisma Compute](https://alchemy.run/prisma/data/drizzle-postgres) — Use Alchemy's Prisma hosting provider to run a Drizzle API against Prisma Postgres. ## Railway — Frontend - [Websites](https://alchemy.run/railway/frontend/websites) — Deploy Vite, Astro, Next.js, vinext, Nuxt, React Router, SolidStart, SvelteKit, TanStack Start, Waku, Octane, Foldkit, Vocs, or any static build to Railway with first-class Website resources. - [Vite](https://alchemy.run/railway/frontend/vite) — Deploy a Vite SPA to Railway with Railway.Website.Vite — static assets on a container Service, a *.up.railway.app URL (or your domain), and Vite's own dev server under alchemy dev. - [Static sites](https://alchemy.run/railway/frontend/static-site) — Deploy a static site to Railway with Railway.Website.StaticSite — a build command, a container Service. - [React Router](https://alchemy.run/railway/frontend/react-router) — Deploy React Router v7 (framework mode) to Railway with Railway.Website.ReactRouter — SSR on a container Service, client assets in the image, and React Router's own Vite dev server under alchemy dev. - [Foldkit](https://alchemy.run/railway/frontend/foldkit) — Deploy a Foldkit app to Railway with Railway.Website.Foldkit — a client-only Vite SPA on a container Service, and Vite's own dev server under alchemy dev. - [TanStack Start](https://alchemy.run/railway/frontend/tanstack-start) — Deploy TanStack Start (React or Solid) to Railway with Railway.Website.TanStackStart — SSR on a container Service, client assets in the image, and TanStack Start's own Vite dev server under alchemy dev. - [Next.js](https://alchemy.run/railway/frontend/nextjs) — Deploy a Next.js app to Railway with Railway.Website.Nextjs — next build plus a Node next({ dev: false }) container, and next dev under alchemy dev. - [Vinext](https://alchemy.run/railway/frontend/vinext) — Deploy vinext to Railway with the shared Website API, native local development, and a platform-specific data cache. - [Nuxt](https://alchemy.run/railway/frontend/nuxt) — Deploy a Nuxt app to Railway with Railway.Website.Nuxt — nitro's node preset on a Service, and Nuxt's own dev server under alchemy dev. - [Vocs](https://alchemy.run/railway/frontend/vocs) — Deploy a Vocs docs site to Railway with Railway.Website.Vocs — prerendered HTML on a Railway Service, extensionless routes, and Vocs' own dev server under alchemy dev. - [SolidStart](https://alchemy.run/railway/frontend/solidstart) — Deploy a SolidStart app to Railway with Railway.Website.SolidStart — nitro's node preset on a container Service, prerendered pages in the image, and SolidStart's own Vite dev server under alchemy dev. - [Astro](https://alchemy.run/railway/frontend/astro) — Deploy an Astro app to Railway with Railway.Website.Astro — Node SSR on a Service container, static output as a file server, and Astro's own dev server under alchemy dev. - [SvelteKit](https://alchemy.run/railway/frontend/sveltekit) — Deploy a SvelteKit app to Railway with Railway.Website.SvelteKit — kit SSR plus prerendered assets on one Service, and Kit's own dev server under alchemy dev. - [Waku](https://alchemy.run/railway/frontend/waku) — Deploy a Waku app to Railway with Railway.Website.Waku — RSC server on a container Service, SSG pages in the image, and Waku's own dev server under alchemy dev. - [Octane](https://alchemy.run/railway/frontend/octane) — Deploy an OctaneJS app to Railway with Railway.Website.Octane — SSR plus client assets on one Service, and Octane's own Vite dev server under alchemy dev. ## PlanetScale Serverless MySQL & Postgres as Stack resources. Composes with Cloudflare Hyperdrive and Drizzle — those guides are listed under Cloudflare. - [PlanetScale](https://alchemy.run/planetscale) — Serverless MySQL (Vitess) and Postgres with database branching — databases, branches, and credentials as Stack resources. - [Setup](https://alchemy.run/planetscale/setup) — Connect alchemy to PlanetScale — account, credentials, and profiles. - [Postgres](https://alchemy.run/planetscale/data/postgres) — PlanetScale Postgres as Stack resources — databases, branches, roles with least-privilege inherited roles, and direct vs pooled connection origins. - [MySQL](https://alchemy.run/planetscale/data/mysql) — PlanetScale MySQL (Vitess) as Stack resources — databases, branches, and passwords, with SQL migrations per branch and a straight line into Cloudflare Hyperdrive. - [Migrations](https://alchemy.run/planetscale/data/migrations) — Apply SQL migrations and seed data to PlanetScale databases and branches as part of every deploy — ordered, hashed, tracked, and run over short-lived credentials. - [Credentials](https://alchemy.run/planetscale/data/credentials) — PlanetScale credentials as Stack resources — Postgres roles, the default role and forceReset, MySQL passwords, TTLs, CIDR allowlists, and direct vs pooled connection origins. - [Backups & restores](https://alchemy.run/planetscale/data/backups) — Restore a PlanetScale backup into a fresh branch with backupId, or seed a new branch from the last successful backup with seedData. - [Preview branches per PR](https://alchemy.run/planetscale/guides/preview-branches) — Give every pull request its own PlanetScale branch — a long-lived database owned by a staging stage, referenced by ephemeral PR stages that fork, migrate, and tear down a branch each. - [Drizzle ORM with PlanetScale](https://alchemy.run/planetscale/guides/drizzle) — Configure PlanetScale Postgres or MySQL branches, committed Drizzle migrations, and role or password connections. ## Neon Neon backend resources: Postgres branches, Functions, private object storage, managed Auth, Data API, AI Gateway and Website adapters. The upload tutorial combines native and Effect handlers with authenticated browser uploads. - [Neon](https://alchemy.run/neon) — Declare Neon Postgres, Functions, storage, Auth, AI Gateway and websites together in an Alchemy Stack. - [Setup](https://alchemy.run/neon/setup) — Prepare Neon credentials, service access, regions, and external dependencies before deploying with Alchemy. - [Organization governance](https://alchemy.run/neon/governance) — Manage existing Neon organization access, billing alerts, and private-network associations with explicit ownership and restoration. - [AI Gateway setup](https://alchemy.run/neon/guides/ai-gateway) — Buy Neon AI Gateway credits and use a model from an Effect Function. - [Production Auth](https://alchemy.run/neon/guides/production-auth) — Configure trusted origins, SMTP, OAuth callbacks, and verification before launching Managed Better Auth. - [Private networking](https://alchemy.run/neon/guides/private-networking) — Prepare AWS PrivateLink endpoints, register them with Neon, enable private DNS, and verify database access. - [Custom domains](https://alchemy.run/neon/guides/custom-domains) — Register a Function hostname, configure DNS and CAA, verify HTTPS, and retire the domain safely. - [State and recovery](https://alchemy.run/neon/guides/state-recovery) — Preserve Neon ownership and reveal-once secrets, recover interrupted deployments, and clean up without discarding state. - [Build an upload journal](https://alchemy.run/neon/tutorial) — Sign in, upload private files, process real storage events, and view Postgres-backed status with Neon and Alchemy. - [Create the upload backend](https://alchemy.run/neon/tutorial/backend) — Add a Neon project, a migrated branch, private storage, and managed authentication. - [Protect and process uploads](https://alchemy.run/neon/tutorial/functions) — Verify JWTs, sign private uploads, and record real bucket events in Postgres. - [Connect the browser](https://alchemy.run/neon/tutorial/frontend) — Use managed signup and sessions to upload and download private files from Vite. - [Fork a preview and clean up](https://alchemy.run/neon/tutorial/previews) — Keep preview writes isolated from the parent, verify inheritance, and destroy only owned resources. - [Branching](https://alchemy.run/neon/data/branching) — Neon branches are copy-on-write forks of a parent branch — create them per stage or preview, pin them to a point in time, copy schema only, and let them expire on their own. - [Connections](https://alchemy.run/neon/data/connections) — Every Neon project and branch exposes direct and pooled connection URIs plus pre-parsed origin outputs — feed the direct origin to Hyperdrive and the pooled one to everything else. - [Migrations](https://alchemy.run/neon/data/migrations) — Apply SQL migrations and seed data to Neon projects and branches as part of every deploy — ordered, hashed, and tracked in Alchemy's __alchemy_migrations table. - [Preview branches per PR](https://alchemy.run/neon/guides/preview-branches) — Keep one long-lived Neon project in a staging stage and fork a copy-on-write branch per PR stage — isolated preview databases in seconds, destroyed with the stage. - [Drizzle ORM with Neon](https://alchemy.run/neon/guides/drizzle) — Configure Neon projects, branches, committed Drizzle migrations, and direct or pooled connections. ## Axiom Observability as Stack resources — datasets, monitors, notifiers. The exporter-Layer pattern is documented in Concepts → Observability. - [Axiom](https://alchemy.run/axiom) — Observability as resources — OTEL datasets, ingest tokens, monitors, notifiers, and dashboards declared next to the code that emits the data. - [Setup](https://alchemy.run/axiom/setup) — Connect alchemy to Axiom — account, credentials, and profiles. - [Datasets & ingest](https://alchemy.run/axiom/data/ingest) — Axiom datasets per OTel signal with OTLP endpoints as outputs, least-privilege ingest tokens, and per-stage naming with Stack.useSync. - [Alerting: monitors & notifiers](https://alchemy.run/axiom/guides/alerting) — Turn APL queries into alerts — Threshold, MatchEvent, and AnomalyDetection monitors wired to Slack, email, PagerDuty, and webhook notifiers, all as resources in your Stack. - [Dashboards as code](https://alchemy.run/axiom/guides/dashboards) — Declare Axiom dashboards — charts, layout, filter bars, saved views, and deploy annotations — as alchemy resources next to the services they observe. - [Deploy markers & annotations](https://alchemy.run/axiom/guides/annotations) — Overlay deploys, incidents, and flag flips as vertical markers on Axiom charts — point or range annotations, scoped to one or more datasets, declared as alchemy resources. ## GitHub Repos, secrets, variables, and repository event sources as Stack resources; the CI/CD guides live under Guides and each cloud's tutorial part 5. - [GitHub](https://alchemy.run/github) — Repositories, Actions secrets and variables, webhooks, and repository event sources as Stack resources — the glue for CI/CD. - [Setup](https://alchemy.run/github/setup) — Connect alchemy to GitHub — account, credentials, and profiles. - [Repositories](https://alchemy.run/github/repository) — Manage GitHub repositories as Stack resources — create or adopt a repo, converge its settings on every deploy, rename in place, and opt into deletion explicitly. - [Actions secrets & variables](https://alchemy.run/github/actions-config) — Manage GitHub Actions secrets and variables as Stack resources — encrypted secrets, plain-text variables, bulk helpers, and CI credentials provisioned as code. - [Webhooks & events](https://alchemy.run/github/events) — Provision GitHub repository webhooks as resources, or subscribe a Cloudflare Worker to repository events with typed payloads and verified deliveries. ## Git A git server you build in one file, use like any remote, and reshape one block at a time: setup, a four-part tutorial (build it, repositories and tokens, your own rules, your app on the same domain), the REST and GitHub-compatible planes, the building blocks with their implementations, and recipes with the scaling model and measurements. - [Git](https://alchemy.run/git) — A pluggable, embeddable, self-hostable git server on Cloudflare Workers, Durable Objects, and R2. Smart HTTP for any client, a typed REST plane with pull requests, and a GitHub-compatible API. - [Getting Started](https://alchemy.run/git/getting-started) — A complete quickstart for a Git host protected by a shared credential. Deploy it to Cloudflare, push a repository, and clone it back. - [Part 1: Push your first repository](https://alchemy.run/git/tutorial/part-1) — Deploy a Git host, push a commit, and clone it back. Add storage and hashing one layer at a time. - [Part 2: Control access](https://alchemy.run/git/tutorial/part-2) — Protect the existing Git host with one shared credential, then verify both accepted and rejected requests. - [Part 3: Publish a repository](https://alchemy.run/git/tutorial/part-3) — Allow anonymous clones of public repositories while preserving authenticated writes. - [Part 4: Give users their own credentials](https://alchemy.run/git/tutorial/part-4) — Replace the shared credential with Better Auth accounts and individual Git API keys. - [Cloning & pushing](https://alchemy.run/git/clone-and-push) — Standard git clients over smart HTTP. What the wire supports, where credentials go, and what to do when something hangs. - [Repositories](https://alchemy.run/git/repositories) — Create, fork, import, and manage repositories over the typed REST plane. - [Pull requests](https://alchemy.run/git/pull-requests) — Server-side merge base, tree diffs, and fast-forward or three-way merges, computed inside the repository. - [GitHub API compatibility](https://alchemy.run/git/github-api) — Point the gh CLI and Octokit at your host with the /api/v3 facade. - [Overview](https://alchemy.run/git/blocks) — One layer graph, provided once, builds the Worker and every Durable Object behind it. Each line is a decision with implementations you choose or write. - [HTTP routes](https://alchemy.run/git/blocks/server) — Compose Git route layers beside your application's Effect HTTP API, with your middleware and server. - [Repository](https://alchemy.run/git/blocks/repositories) — One Durable Object per repository, behind the Git.RepoStore service. Provide it, call it from your own routes, compose operations through Git.Engine, or implement its shape over another store. - [Registry](https://alchemy.run/git/blocks/registry) — The registry resolves owner/name to a repository and serves listings. Keep it in a Durable Object or move it to a D1 database. - [Blob Store](https://alchemy.run/git/blocks/blob-store) — Bulk, immutable, content-addressed bytes. R2 by default, S3 when data has to live in AWS, or any store that can do ranged reads and multipart writes. - [Hasher](https://alchemy.run/git/blocks/hasher) — Every object a push sends is inflated and hashed before a ref moves. That is CPU, and where it runs is a Layer, in the Worker, in dynamically loaded Workers, or on Lambda. - [Authentication and authorization](https://alchemy.run/git/blocks/auth) — Use native Effect HTTP middleware and ordinary application effects to authorize Git operations. - [Overview](https://alchemy.run/git/recipes) — Requirements pick lines. One table from what you need to the line that changes, the stack shape for one cloud or two, and complete files to copy. - [Scaling](https://alchemy.run/git/recipes/scaling) — Reads scale like a CDN and writes scale like git. The shape, the per-repository limits, the measured numbers, and a worked example of pushing something large and swapping the hasher. - [All on Cloudflare](https://alchemy.run/git/recipes/cloudflare) — A git host on one Cloudflare account. One Worker, one bucket, two Durable Object namespaces, and dynamically loaded Workers hashing large pushes. - [Bytes in S3, hashing on Lambda](https://alchemy.run/git/recipes/cloudflare-aws) — Compute on Cloudflare, bytes in S3, and large pushes hashed one Lambda per chunk. One stack carries both provider sets, and Alchemy mints the cross-cloud identity. - [Bring your own store](https://alchemy.run/git/recipes/your-own-store) — Bytes have to live somewhere that is neither R2 nor S3. Implement the five operations of Git.BlobStore and provide it in place of the shipped Layers. ## Stripe Products, prices, coupons, customers, payment links, and webhooks as Stack resources. HTTP bindings run inside a Worker or Lambda. - [Stripe](https://alchemy.run/stripe) — Sell subscriptions and onboard merchants from a Cloudflare Worker — catalog, Checkout, the Billing Portal, Connect, and webhooks declared next to the code that uses them. - [Setup](https://alchemy.run/stripe/setup) — Connect alchemy to Stripe — secret key, profiles, CI, and how Worker bindings get their credentials. - [Sell a subscription](https://alchemy.run/stripe/guides/subscriptions) — The full SaaS billing loop on one Cloudflare Worker — hosted Checkout, the Billing Portal, and webhooks that keep an entitlement record your app gates on. - [Onboard merchants with Connect](https://alchemy.run/stripe/guides/connect) — Build a Connect platform on a Cloudflare Worker — create Express accounts, send merchants through hosted onboarding, and learn from account.updated when they can take payments. - [React to Stripe events](https://alchemy.run/stripe/guides/webhooks) — consumeEvents provisions the webhook endpoint and runs one Effect per delivery. When to use it, which events to listen for, and how to manage the endpoint yourself. ## Docker Local and CI Docker as Stack resources — images, containers, networks, and volumes driven through the active Docker CLI context; cloud container runtimes (Cloudflare Containers, ECS) consume the pushed image refs from their own hubs. - [Docker](https://alchemy.run/docker) — Images, containers, networks, and volumes as Stack resources, driven through your active Docker CLI context. - [Setup](https://alchemy.run/docker/setup) — Point alchemy at a Docker daemon — the active CLI context and the DOCKER_BIN override. - [Local services: Postgres with containers, networks, and volumes](https://alchemy.run/docker/local-services) — Run a local Postgres for development as alchemy resources — a pinned image, a named network and volume, a Redacted password, and a healthchecked container that converges on every deploy. - [Build & push images](https://alchemy.run/docker/build-and-push) — Build a container image from a Dockerfile, push it to a registry, and hand the resulting image reference to Cloudflare Containers or AWS ECS. ## SQL Database comparison, Effect SQL, Drizzle, Prisma ORM v8 (Postgres-only), committed migrations, and connection lifecycle. Deployment walkthroughs live with their runtime providers. - [SQL](https://alchemy.run/sql) — Choose a database, connect with Effect SQL, Drizzle, or Prisma ORM, and deploy committed migrations. - [Databases](https://alchemy.run/sql/databases) — Compare database engines, connection paths, and deployment guides across Alchemy's SQL providers. - [Postgres](https://alchemy.run/sql/effect-sql/postgres) — SQL.Postgres turns a connection string into an @effect/sql-pg client — tagged-template queries with typed errors, one pool per execution. - [MySQL](https://alchemy.run/sql/effect-sql/mysql) — SQL.MySQL turns a connection string into an @effect/sql-mysql2 client — portable tagged-template queries with typed errors and one pool per execution. - [D1](https://alchemy.run/sql/effect-sql/d1) — SQL.D1 wraps a bound D1 database in an @effect/sql-d1 client — tagged-template queries with typed errors over the native binding. - [Migrations](https://alchemy.run/sql/effect-sql/migrations) — Commit ordered SQL files and apply them on database deploy or Durable Object activation, tracked in one Alchemy-owned table. - [Connection lifecycle](https://alchemy.run/sql/effect-sql/lifecycle) — SQL and Drizzle clients build lazily, reuse a client within the current execution scope, and release resources when that scope closes. - [Postgres](https://alchemy.run/sql/drizzle/postgres) — Provider-neutral Postgres schemas, Effect-native Drizzle queries, and connections for Workers, Lambda, and servers. - [MySQL](https://alchemy.run/sql/drizzle/mysql) — Provider-neutral MySQL schemas, Effect-native Drizzle queries, and connection configuration. - [D1](https://alchemy.run/sql/drizzle/d1) — SQLite schemas and Effect-native Drizzle queries over a Cloudflare D1 binding. - [Migrations](https://alchemy.run/sql/drizzle/migrations) — Generate migrations when your schema changes, review and commit the SQL and snapshots, then deploy from Git. - [Postgres](https://alchemy.run/sql/prisma/postgres) — Connect Prisma ORM v8 to Postgres and run Effect-native queries, streams, prepared statements, and transactions independently of your cloud provider. - [Contracts](https://alchemy.run/sql/prisma/contracts) — Author Prisma ORM v8 contracts in Prisma Schema Language or TypeScript, generate optional Effect bindings and row schemas, and connect them to migrations. - [Migrations](https://alchemy.run/sql/prisma/migrations) — How Prisma.Contract and Prisma.Migrate run Prisma's contract emission, migration planning, and graph-ordered apply inside alchemy deploy. ## Command Cloud-agnostic local process primitives — memoized builds, one-off commands, and dev servers; the static-site guides in each cloud hub consume them under the hood. - [Command](https://alchemy.run/command) — Alchemy's cloud-agnostic primitives for local processes in the deploy graph — memoized builds, one-off commands, and dev servers. - [Memoization: builds & one-off commands](https://alchemy.run/command/memoization) — Content-hash memoization shared by Command.Build and Command.Exec — what gets hashed, when a command re-runs, and the outdir contract on destroy. - [Dev servers](https://alchemy.run/command/dev-servers) — Run a framework dev server as a Command.Dev resource — started by alchemy dev, a no-op on alchemy deploy, with the server's URL surfaced back into your stack. ## Providers Service-level API reference, generated from JSDoc on the source `.ts` files via `bun scripts/generate-api-reference.ts`. Each page groups resources and capabilities by service, with a heading per resource and examples extracted from source JSDoc. Grouped by cloud below. ### ACME - [ACME.Account reference](https://alchemy.run/providers/acme/reference/account) — Resources and capabilities for ACME.Account. - [ACME.Certificate reference](https://alchemy.run/providers/acme/reference/certificate) — Resources and capabilities for ACME.Certificate. ### AWS - [AWS.AccessAnalyzer reference](https://alchemy.run/providers/aws/accessanalyzer) — Resources and capabilities for AWS.AccessAnalyzer. - [AWS.Account reference](https://alchemy.run/providers/aws/account) — Resources and capabilities for AWS.Account. - [AWS.ACM reference](https://alchemy.run/providers/aws/acm) — Resources and capabilities for AWS.ACM. - [AWS.ACMPCA reference](https://alchemy.run/providers/aws/acmpca) — Resources and capabilities for AWS.ACMPCA. - [AWS.AIOps reference](https://alchemy.run/providers/aws/aiops) — Resources and capabilities for AWS.AIOps. - [AWS.AMP reference](https://alchemy.run/providers/aws/amp) — Resources and capabilities for AWS.AMP. - [AWS.Amplify reference](https://alchemy.run/providers/aws/amplify) — Resources and capabilities for AWS.Amplify. - [AWS.ApiGateway reference](https://alchemy.run/providers/aws/apigateway) — Resources and capabilities for AWS.ApiGateway. - [AWS.ApiGatewayV2 reference](https://alchemy.run/providers/aws/apigatewayv2) — Resources and capabilities for AWS.ApiGatewayV2. - [AWS.AppConfig reference](https://alchemy.run/providers/aws/appconfig) — Resources and capabilities for AWS.AppConfig. - [AWS.AppFlow reference](https://alchemy.run/providers/aws/appflow) — Resources and capabilities for AWS.AppFlow. - [AWS.AppIntegrations reference](https://alchemy.run/providers/aws/appintegrations) — Resources and capabilities for AWS.AppIntegrations. - [AWS.ApplicationAutoScaling reference](https://alchemy.run/providers/aws/applicationautoscaling) — Resources and capabilities for AWS.ApplicationAutoScaling. - [AWS.ApplicationSignals reference](https://alchemy.run/providers/aws/applicationsignals) — Resources and capabilities for AWS.ApplicationSignals. - [AWS.AppRegistry reference](https://alchemy.run/providers/aws/appregistry) — Resources and capabilities for AWS.AppRegistry. - [AWS.AppRunner reference](https://alchemy.run/providers/aws/apprunner) — Resources and capabilities for AWS.AppRunner. - [AWS.AppSync reference](https://alchemy.run/providers/aws/appsync) — Resources and capabilities for AWS.AppSync. - [AWS.Athena reference](https://alchemy.run/providers/aws/athena) — Resources and capabilities for AWS.Athena. - [AWS.AuditManager reference](https://alchemy.run/providers/aws/auditmanager) — Resources and capabilities for AWS.AuditManager. - [AWS.AutoScaling reference](https://alchemy.run/providers/aws/autoscaling) — Resources and capabilities for AWS.AutoScaling. - [AWS.B2BI reference](https://alchemy.run/providers/aws/b2bi) — Resources and capabilities for AWS.B2BI. - [AWS.Backup reference](https://alchemy.run/providers/aws/backup) — Resources and capabilities for AWS.Backup. - [AWS.BackupSearch reference](https://alchemy.run/providers/aws/backupsearch) — Resources and capabilities for AWS.BackupSearch. - [AWS.Batch reference](https://alchemy.run/providers/aws/batch) — Resources and capabilities for AWS.Batch. - [AWS.BCMDataExports reference](https://alchemy.run/providers/aws/bcmdataexports) — Resources and capabilities for AWS.BCMDataExports. - [AWS.Bedrock reference](https://alchemy.run/providers/aws/bedrock) — Resources and capabilities for AWS.Bedrock. - [AWS.BedrockAgentCore reference](https://alchemy.run/providers/aws/bedrockagentcore) — Resources and capabilities for AWS.BedrockAgentCore. - [AWS.BedrockDataAutomation reference](https://alchemy.run/providers/aws/bedrockdataautomation) — Resources and capabilities for AWS.BedrockDataAutomation. - [AWS.Budgets reference](https://alchemy.run/providers/aws/budgets) — Resources and capabilities for AWS.Budgets. - [AWS.Chatbot reference](https://alchemy.run/providers/aws/chatbot) — Resources and capabilities for AWS.Chatbot. - [AWS.CloudControl reference](https://alchemy.run/providers/aws/cloudcontrol) — Resources and capabilities for AWS.CloudControl. - [AWS.CloudFormation reference](https://alchemy.run/providers/aws/cloudformation) — Resources and capabilities for AWS.CloudFormation. - [AWS.CloudFront reference](https://alchemy.run/providers/aws/cloudfront) — Resources and capabilities for AWS.CloudFront. - [AWS.CloudHSMV2 reference](https://alchemy.run/providers/aws/cloudhsmv2) — Resources and capabilities for AWS.CloudHSMV2. - [AWS.CloudMap reference](https://alchemy.run/providers/aws/cloudmap) — Resources and capabilities for AWS.CloudMap. - [AWS.CloudTrail reference](https://alchemy.run/providers/aws/cloudtrail) — Resources and capabilities for AWS.CloudTrail. - [AWS.CloudWatch reference](https://alchemy.run/providers/aws/cloudwatch) — Resources and capabilities for AWS.CloudWatch. - [AWS.CodeArtifact reference](https://alchemy.run/providers/aws/codeartifact) — Resources and capabilities for AWS.CodeArtifact. - [AWS.CodeBuild reference](https://alchemy.run/providers/aws/codebuild) — Resources and capabilities for AWS.CodeBuild. - [AWS.CodeConnections reference](https://alchemy.run/providers/aws/codeconnections) — Resources and capabilities for AWS.CodeConnections. - [AWS.CodeDeploy reference](https://alchemy.run/providers/aws/codedeploy) — Resources and capabilities for AWS.CodeDeploy. - [AWS.CodePipeline reference](https://alchemy.run/providers/aws/codepipeline) — Resources and capabilities for AWS.CodePipeline. - [AWS.Cognito reference](https://alchemy.run/providers/aws/cognito) — Resources and capabilities for AWS.Cognito. - [AWS.Comprehend reference](https://alchemy.run/providers/aws/comprehend) — Resources and capabilities for AWS.Comprehend. - [AWS.ComprehendMedical reference](https://alchemy.run/providers/aws/comprehendmedical) — Resources and capabilities for AWS.ComprehendMedical. - [AWS.Config reference](https://alchemy.run/providers/aws/config) — Resources and capabilities for AWS.Config. - [AWS.ControlTower reference](https://alchemy.run/providers/aws/controltower) — Resources and capabilities for AWS.ControlTower. - [AWS.CostAndUsageReport reference](https://alchemy.run/providers/aws/costandusagereport) — Resources and capabilities for AWS.CostAndUsageReport. - [AWS.CostExplorer reference](https://alchemy.run/providers/aws/costexplorer) — Resources and capabilities for AWS.CostExplorer. - [AWS.DataBrew reference](https://alchemy.run/providers/aws/databrew) — Resources and capabilities for AWS.DataBrew. - [AWS.DataExchange reference](https://alchemy.run/providers/aws/dataexchange) — Resources and capabilities for AWS.DataExchange. - [AWS.DataSync reference](https://alchemy.run/providers/aws/datasync) — Resources and capabilities for AWS.DataSync. - [AWS.DataZone reference](https://alchemy.run/providers/aws/datazone) — Resources and capabilities for AWS.DataZone. - [AWS.DAX reference](https://alchemy.run/providers/aws/dax) — Resources and capabilities for AWS.DAX. - [AWS.Deadline reference](https://alchemy.run/providers/aws/deadline) — Resources and capabilities for AWS.Deadline. - [AWS.Detective reference](https://alchemy.run/providers/aws/detective) — Resources and capabilities for AWS.Detective. - [AWS.DevOpsGuru reference](https://alchemy.run/providers/aws/devopsguru) — Resources and capabilities for AWS.DevOpsGuru. - [AWS.DirectoryService reference](https://alchemy.run/providers/aws/directoryservice) — Resources and capabilities for AWS.DirectoryService. - [AWS.DLM reference](https://alchemy.run/providers/aws/dlm) — Resources and capabilities for AWS.DLM. - [AWS.DMS reference](https://alchemy.run/providers/aws/dms) — Resources and capabilities for AWS.DMS. - [AWS.DocDB reference](https://alchemy.run/providers/aws/docdb) — Resources and capabilities for AWS.DocDB. - [AWS.DocDBElastic reference](https://alchemy.run/providers/aws/docdbelastic) — Resources and capabilities for AWS.DocDBElastic. - [AWS.DSQL reference](https://alchemy.run/providers/aws/dsql) — Resources and capabilities for AWS.DSQL. - [AWS.DynamoDB reference](https://alchemy.run/providers/aws/dynamodb) — Resources and capabilities for AWS.DynamoDB. - [AWS.EC2 reference](https://alchemy.run/providers/aws/ec2) — Resources and capabilities for AWS.EC2. - [AWS.ECR reference](https://alchemy.run/providers/aws/ecr) — Resources and capabilities for AWS.ECR. - [AWS.ECRPublic reference](https://alchemy.run/providers/aws/ecrpublic) — Resources and capabilities for AWS.ECRPublic. - [AWS.ECS reference](https://alchemy.run/providers/aws/ecs) — Resources and capabilities for AWS.ECS. - [AWS.EFS reference](https://alchemy.run/providers/aws/efs) — Resources and capabilities for AWS.EFS. - [AWS.EKS reference](https://alchemy.run/providers/aws/eks) — Resources and capabilities for AWS.EKS. - [AWS.ElastiCache reference](https://alchemy.run/providers/aws/elasticache) — Resources and capabilities for AWS.ElastiCache. - [AWS.ELBv2 reference](https://alchemy.run/providers/aws/elbv2) — Resources and capabilities for AWS.ELBv2. - [AWS.EMR reference](https://alchemy.run/providers/aws/emr) — Resources and capabilities for AWS.EMR. - [AWS.EMRContainers reference](https://alchemy.run/providers/aws/emrcontainers) — Resources and capabilities for AWS.EMRContainers. - [AWS.EMRServerless reference](https://alchemy.run/providers/aws/emrserverless) — Resources and capabilities for AWS.EMRServerless. - [AWS.EntityResolution reference](https://alchemy.run/providers/aws/entityresolution) — Resources and capabilities for AWS.EntityResolution. - [AWS.EventBridge reference](https://alchemy.run/providers/aws/eventbridge) — Resources and capabilities for AWS.EventBridge. - [AWS.FinSpace reference](https://alchemy.run/providers/aws/finspace) — Resources and capabilities for AWS.FinSpace. - [AWS.Firehose reference](https://alchemy.run/providers/aws/firehose) — Resources and capabilities for AWS.Firehose. - [AWS.FIS reference](https://alchemy.run/providers/aws/fis) — Resources and capabilities for AWS.FIS. - [AWS.FMS reference](https://alchemy.run/providers/aws/fms) — Resources and capabilities for AWS.FMS. - [AWS.Forecast reference](https://alchemy.run/providers/aws/forecast) — Resources and capabilities for AWS.Forecast. - [AWS.FraudDetector reference](https://alchemy.run/providers/aws/frauddetector) — Resources and capabilities for AWS.FraudDetector. - [AWS.FSx reference](https://alchemy.run/providers/aws/fsx) — Resources and capabilities for AWS.FSx. - [AWS.GeoMaps reference](https://alchemy.run/providers/aws/geomaps) — Resources and capabilities for AWS.GeoMaps. - [AWS.GeoPlaces reference](https://alchemy.run/providers/aws/geoplaces) — Resources and capabilities for AWS.GeoPlaces. - [AWS.GeoRoutes reference](https://alchemy.run/providers/aws/georoutes) — Resources and capabilities for AWS.GeoRoutes. - [AWS.Glacier reference](https://alchemy.run/providers/aws/glacier) — Resources and capabilities for AWS.Glacier. - [AWS.GlobalAccelerator reference](https://alchemy.run/providers/aws/globalaccelerator) — Resources and capabilities for AWS.GlobalAccelerator. - [AWS.Glue reference](https://alchemy.run/providers/aws/glue) — Resources and capabilities for AWS.Glue. - [AWS.Grafana reference](https://alchemy.run/providers/aws/grafana) — Resources and capabilities for AWS.Grafana. - [AWS.GreengrassV2 reference](https://alchemy.run/providers/aws/greengrassv2) — Resources and capabilities for AWS.GreengrassV2. - [AWS.GuardDuty reference](https://alchemy.run/providers/aws/guardduty) — Resources and capabilities for AWS.GuardDuty. - [AWS.HealthLake reference](https://alchemy.run/providers/aws/healthlake) — Resources and capabilities for AWS.HealthLake. - [AWS.IAM reference](https://alchemy.run/providers/aws/iam) — Resources and capabilities for AWS.IAM. - [AWS.IdentityCenter reference](https://alchemy.run/providers/aws/identitycenter) — Resources and capabilities for AWS.IdentityCenter. - [AWS.ImageBuilder reference](https://alchemy.run/providers/aws/imagebuilder) — Resources and capabilities for AWS.ImageBuilder. - [AWS.Inspector2 reference](https://alchemy.run/providers/aws/inspector2) — Resources and capabilities for AWS.Inspector2. - [AWS.InternetMonitor reference](https://alchemy.run/providers/aws/internetmonitor) — Resources and capabilities for AWS.InternetMonitor. - [AWS.IoT reference](https://alchemy.run/providers/aws/iot) — Resources and capabilities for AWS.IoT. - [AWS.IoTFleetWise reference](https://alchemy.run/providers/aws/iotfleetwise) — Resources and capabilities for AWS.IoTFleetWise. - [AWS.IoTManagedIntegrations reference](https://alchemy.run/providers/aws/iotmanagedintegrations) — Resources and capabilities for AWS.IoTManagedIntegrations. - [AWS.IoTSiteWise reference](https://alchemy.run/providers/aws/iotsitewise) — Resources and capabilities for AWS.IoTSiteWise. - [AWS.IoTWireless reference](https://alchemy.run/providers/aws/iotwireless) — Resources and capabilities for AWS.IoTWireless. - [AWS.IVS reference](https://alchemy.run/providers/aws/ivs) — Resources and capabilities for AWS.IVS. - [AWS.IVSChat reference](https://alchemy.run/providers/aws/ivschat) — Resources and capabilities for AWS.IVSChat. - [AWS.IVSRealtime reference](https://alchemy.run/providers/aws/ivsrealtime) — Resources and capabilities for AWS.IVSRealtime. - [AWS.Kafka reference](https://alchemy.run/providers/aws/kafka) — Resources and capabilities for AWS.Kafka. - [AWS.Kendra reference](https://alchemy.run/providers/aws/kendra) — Resources and capabilities for AWS.Kendra. - [AWS.Keyspaces reference](https://alchemy.run/providers/aws/keyspaces) — Resources and capabilities for AWS.Keyspaces. - [AWS.Kinesis reference](https://alchemy.run/providers/aws/kinesis) — Resources and capabilities for AWS.Kinesis. - [AWS.KinesisAnalyticsV2 reference](https://alchemy.run/providers/aws/kinesisanalyticsv2) — Resources and capabilities for AWS.KinesisAnalyticsV2. - [AWS.KinesisVideo reference](https://alchemy.run/providers/aws/kinesisvideo) — Resources and capabilities for AWS.KinesisVideo. - [AWS.KMS reference](https://alchemy.run/providers/aws/kms) — Resources and capabilities for AWS.KMS. - [AWS.LakeFormation reference](https://alchemy.run/providers/aws/lakeformation) — Resources and capabilities for AWS.LakeFormation. - [AWS.Lambda reference](https://alchemy.run/providers/aws/lambda) — Resources and capabilities for AWS.Lambda. - [AWS.LexV2 reference](https://alchemy.run/providers/aws/lexv2) — Resources and capabilities for AWS.LexV2. - [AWS.LicenseManager reference](https://alchemy.run/providers/aws/licensemanager) — Resources and capabilities for AWS.LicenseManager. - [AWS.Location reference](https://alchemy.run/providers/aws/location) — Resources and capabilities for AWS.Location. - [AWS.Logs reference](https://alchemy.run/providers/aws/logs) — Resources and capabilities for AWS.Logs. - [AWS.Macie2 reference](https://alchemy.run/providers/aws/macie2) — Resources and capabilities for AWS.Macie2. - [AWS.MailManager reference](https://alchemy.run/providers/aws/mailmanager) — Resources and capabilities for AWS.MailManager. - [AWS.MediaConnect reference](https://alchemy.run/providers/aws/mediaconnect) — Resources and capabilities for AWS.MediaConnect. - [AWS.MediaConvert reference](https://alchemy.run/providers/aws/mediaconvert) — Resources and capabilities for AWS.MediaConvert. - [AWS.MediaLive reference](https://alchemy.run/providers/aws/medialive) — Resources and capabilities for AWS.MediaLive. - [AWS.MediaPackageV2 reference](https://alchemy.run/providers/aws/mediapackagev2) — Resources and capabilities for AWS.MediaPackageV2. - [AWS.MediaTailor reference](https://alchemy.run/providers/aws/mediatailor) — Resources and capabilities for AWS.MediaTailor. - [AWS.MedicalImaging reference](https://alchemy.run/providers/aws/medicalimaging) — Resources and capabilities for AWS.MedicalImaging. - [AWS.MemoryDB reference](https://alchemy.run/providers/aws/memorydb) — Resources and capabilities for AWS.MemoryDB. - [AWS.MQ reference](https://alchemy.run/providers/aws/mq) — Resources and capabilities for AWS.MQ. - [AWS.MWAA reference](https://alchemy.run/providers/aws/mwaa) — Resources and capabilities for AWS.MWAA. - [AWS.MWAAServerless reference](https://alchemy.run/providers/aws/mwaaserverless) — Resources and capabilities for AWS.MWAAServerless. - [AWS.Neptune reference](https://alchemy.run/providers/aws/neptune) — Resources and capabilities for AWS.Neptune. - [AWS.NeptuneGraph reference](https://alchemy.run/providers/aws/neptunegraph) — Resources and capabilities for AWS.NeptuneGraph. - [AWS.NetworkFirewall reference](https://alchemy.run/providers/aws/networkfirewall) — Resources and capabilities for AWS.NetworkFirewall. - [AWS.Notifications reference](https://alchemy.run/providers/aws/notifications) — Resources and capabilities for AWS.Notifications. - [AWS.NotificationsContacts reference](https://alchemy.run/providers/aws/notificationscontacts) — Resources and capabilities for AWS.NotificationsContacts. - [AWS.OAM reference](https://alchemy.run/providers/aws/oam) — Resources and capabilities for AWS.OAM. - [AWS.ObservabilityAdmin reference](https://alchemy.run/providers/aws/observabilityadmin) — Resources and capabilities for AWS.ObservabilityAdmin. - [AWS.Omics reference](https://alchemy.run/providers/aws/omics) — Resources and capabilities for AWS.Omics. - [AWS.OpenSearch reference](https://alchemy.run/providers/aws/opensearch) — Resources and capabilities for AWS.OpenSearch. - [AWS.OpenSearchServerless reference](https://alchemy.run/providers/aws/opensearchserverless) — Resources and capabilities for AWS.OpenSearchServerless. - [AWS.Organizations reference](https://alchemy.run/providers/aws/organizations) — Resources and capabilities for AWS.Organizations. - [AWS.OSIS reference](https://alchemy.run/providers/aws/osis) — Resources and capabilities for AWS.OSIS. - [AWS.PaymentCryptography reference](https://alchemy.run/providers/aws/paymentcryptography) — Resources and capabilities for AWS.PaymentCryptography. - [AWS.Personalize reference](https://alchemy.run/providers/aws/personalize) — Resources and capabilities for AWS.Personalize. - [AWS.PinpointSMSVoiceV2 reference](https://alchemy.run/providers/aws/pinpointsmsvoicev2) — Resources and capabilities for AWS.PinpointSMSVoiceV2. - [AWS.Pipes reference](https://alchemy.run/providers/aws/pipes) — Resources and capabilities for AWS.Pipes. - [AWS.Polly reference](https://alchemy.run/providers/aws/polly) — Resources and capabilities for AWS.Polly. - [AWS.Pricing reference](https://alchemy.run/providers/aws/pricing) — Resources and capabilities for AWS.Pricing. - [AWS.QApps reference](https://alchemy.run/providers/aws/qapps) — Resources and capabilities for AWS.QApps. - [AWS.QBusiness reference](https://alchemy.run/providers/aws/qbusiness) — Resources and capabilities for AWS.QBusiness. - [AWS.QuickSight reference](https://alchemy.run/providers/aws/quicksight) — Resources and capabilities for AWS.QuickSight. - [AWS.RAM reference](https://alchemy.run/providers/aws/ram) — Resources and capabilities for AWS.RAM. - [AWS.Rbin reference](https://alchemy.run/providers/aws/rbin) — Resources and capabilities for AWS.Rbin. - [AWS.RDS reference](https://alchemy.run/providers/aws/rds) — Resources and capabilities for AWS.RDS. - [AWS.RDSData reference](https://alchemy.run/providers/aws/rdsdata) — Resources and capabilities for AWS.RDSData. - [AWS.Redshift reference](https://alchemy.run/providers/aws/redshift) — Resources and capabilities for AWS.Redshift. - [AWS.RedshiftData reference](https://alchemy.run/providers/aws/redshiftdata) — Resources and capabilities for AWS.RedshiftData. - [AWS.RedshiftServerless reference](https://alchemy.run/providers/aws/redshiftserverless) — Resources and capabilities for AWS.RedshiftServerless. - [AWS.Rekognition reference](https://alchemy.run/providers/aws/rekognition) — Resources and capabilities for AWS.Rekognition. - [AWS.RePostSpace reference](https://alchemy.run/providers/aws/repostspace) — Resources and capabilities for AWS.RePostSpace. - [AWS.ResourceExplorer reference](https://alchemy.run/providers/aws/resourceexplorer) — Resources and capabilities for AWS.ResourceExplorer. - [AWS.ResourceGroups reference](https://alchemy.run/providers/aws/resourcegroups) — Resources and capabilities for AWS.ResourceGroups. - [AWS.RolesAnywhere reference](https://alchemy.run/providers/aws/rolesanywhere) — Resources and capabilities for AWS.RolesAnywhere. - [AWS.Route53 reference](https://alchemy.run/providers/aws/route53) — Resources and capabilities for AWS.Route53. - [AWS.Route53Domains reference](https://alchemy.run/providers/aws/route53domains) — Resources and capabilities for AWS.Route53Domains. - [AWS.Route53Profiles reference](https://alchemy.run/providers/aws/route53profiles) — Resources and capabilities for AWS.Route53Profiles. - [AWS.Route53Resolver reference](https://alchemy.run/providers/aws/route53resolver) — Resources and capabilities for AWS.Route53Resolver. - [AWS.RUM reference](https://alchemy.run/providers/aws/rum) — Resources and capabilities for AWS.RUM. - [AWS.S3 reference](https://alchemy.run/providers/aws/s3) — Resources and capabilities for AWS.S3. - [AWS.S3Control reference](https://alchemy.run/providers/aws/s3control) — Resources and capabilities for AWS.S3Control. - [AWS.S3Files reference](https://alchemy.run/providers/aws/s3files) — Resources and capabilities for AWS.S3Files. - [AWS.S3Tables reference](https://alchemy.run/providers/aws/s3tables) — Resources and capabilities for AWS.S3Tables. - [AWS.S3Vectors reference](https://alchemy.run/providers/aws/s3vectors) — Resources and capabilities for AWS.S3Vectors. - [AWS.SageMaker reference](https://alchemy.run/providers/aws/sagemaker) — Resources and capabilities for AWS.SageMaker. - [AWS.SageMakerRuntime reference](https://alchemy.run/providers/aws/sagemakerruntime) — Resources and capabilities for AWS.SageMakerRuntime. - [AWS.Scheduler reference](https://alchemy.run/providers/aws/scheduler) — Resources and capabilities for AWS.Scheduler. - [AWS.Schemas reference](https://alchemy.run/providers/aws/schemas) — Resources and capabilities for AWS.Schemas. - [AWS.SecretsManager reference](https://alchemy.run/providers/aws/secretsmanager) — Resources and capabilities for AWS.SecretsManager. - [AWS.SecurityHub reference](https://alchemy.run/providers/aws/securityhub) — Resources and capabilities for AWS.SecurityHub. - [AWS.SecurityLake reference](https://alchemy.run/providers/aws/securitylake) — Resources and capabilities for AWS.SecurityLake. - [AWS.ServiceCatalog reference](https://alchemy.run/providers/aws/servicecatalog) — Resources and capabilities for AWS.ServiceCatalog. - [AWS.ServiceQuotas reference](https://alchemy.run/providers/aws/servicequotas) — Resources and capabilities for AWS.ServiceQuotas. - [AWS.SES reference](https://alchemy.run/providers/aws/ses) — Resources and capabilities for AWS.SES. - [AWS.Shield reference](https://alchemy.run/providers/aws/shield) — Resources and capabilities for AWS.Shield. - [AWS.Signer reference](https://alchemy.run/providers/aws/signer) — Resources and capabilities for AWS.Signer. - [AWS.SimpleDB reference](https://alchemy.run/providers/aws/simpledb) — Resources and capabilities for AWS.SimpleDB. - [AWS.SNS reference](https://alchemy.run/providers/aws/sns) — Resources and capabilities for AWS.SNS. - [AWS.SocialMessaging reference](https://alchemy.run/providers/aws/socialmessaging) — Resources and capabilities for AWS.SocialMessaging. - [AWS.SQS reference](https://alchemy.run/providers/aws/sqs) — Resources and capabilities for AWS.SQS. - [AWS.SSM reference](https://alchemy.run/providers/aws/ssm) — Resources and capabilities for AWS.SSM. - [AWS.SSMContacts reference](https://alchemy.run/providers/aws/ssmcontacts) — Resources and capabilities for AWS.SSMContacts. - [AWS.SSMIncidents reference](https://alchemy.run/providers/aws/ssmincidents) — Resources and capabilities for AWS.SSMIncidents. - [AWS.StateStore reference](https://alchemy.run/providers/aws/statestore) — Resources and capabilities for AWS.StateStore. - [AWS.StepFunctions reference](https://alchemy.run/providers/aws/stepfunctions) — Resources and capabilities for AWS.StepFunctions. - [AWS.Synthetics reference](https://alchemy.run/providers/aws/synthetics) — Resources and capabilities for AWS.Synthetics. - [AWS.Textract reference](https://alchemy.run/providers/aws/textract) — Resources and capabilities for AWS.Textract. - [AWS.Timestream reference](https://alchemy.run/providers/aws/timestream) — Resources and capabilities for AWS.Timestream. - [AWS.Transcribe reference](https://alchemy.run/providers/aws/transcribe) — Resources and capabilities for AWS.Transcribe. - [AWS.Transfer reference](https://alchemy.run/providers/aws/transfer) — Resources and capabilities for AWS.Transfer. - [AWS.Translate reference](https://alchemy.run/providers/aws/translate) — Resources and capabilities for AWS.Translate. - [AWS.VerifiedPermissions reference](https://alchemy.run/providers/aws/verifiedpermissions) — Resources and capabilities for AWS.VerifiedPermissions. - [AWS.VpcLattice reference](https://alchemy.run/providers/aws/vpclattice) — Resources and capabilities for AWS.VpcLattice. - [AWS.WAFv2 reference](https://alchemy.run/providers/aws/wafv2) — Resources and capabilities for AWS.WAFv2. - [AWS.Website reference](https://alchemy.run/providers/aws/website) — Resources and capabilities for AWS.Website. - [AWS.XRay reference](https://alchemy.run/providers/aws/xray) — Resources and capabilities for AWS.XRay. ### Axiom - [Axiom.API Token reference](https://alchemy.run/providers/axiom/reference/api-token) — Resources and capabilities for Axiom.API Token. - [Axiom.Dashboard reference](https://alchemy.run/providers/axiom/reference/dashboard) — Resources and capabilities for Axiom.Dashboard. - [Axiom.Dataset reference](https://alchemy.run/providers/axiom/reference/dataset) — Resources and capabilities for Axiom.Dataset. - [Axiom.Monitor reference](https://alchemy.run/providers/axiom/reference/monitor) — Resources and capabilities for Axiom.Monitor. ### BetterAuth - [BetterAuth.Aurora reference](https://alchemy.run/providers/betterauth/reference/aurora) — Resources and capabilities for BetterAuth.Aurora. - [BetterAuth.D1 reference](https://alchemy.run/providers/betterauth/reference/d1) — Resources and capabilities for BetterAuth.D1. - [BetterAuth.Drizzle reference](https://alchemy.run/providers/betterauth/reference/drizzle) — Resources and capabilities for BetterAuth.Drizzle. - [BetterAuth.Hyperdrive reference](https://alchemy.run/providers/betterauth/reference/hyperdrive) — Resources and capabilities for BetterAuth.Hyperdrive. - [BetterAuth.Memory reference](https://alchemy.run/providers/betterauth/reference/memory) — Resources and capabilities for BetterAuth.Memory. - [BetterAuth.MySQL reference](https://alchemy.run/providers/betterauth/reference/mysql) — Resources and capabilities for BetterAuth.MySQL. - [BetterAuth.Neon reference](https://alchemy.run/providers/betterauth/reference/neon) — Resources and capabilities for BetterAuth.Neon. - [BetterAuth.Postgres reference](https://alchemy.run/providers/betterauth/reference/postgres) — Resources and capabilities for BetterAuth.Postgres. - [BetterAuth.SQLite reference](https://alchemy.run/providers/betterauth/reference/sqlite) — Resources and capabilities for BetterAuth.SQLite. ### Cloudflare - [Cloudflare.Access reference](https://alchemy.run/providers/cloudflare/access) — Resources and capabilities for Cloudflare.Access. - [Cloudflare.Account reference](https://alchemy.run/providers/cloudflare/account) — Resources and capabilities for Cloudflare.Account. - [Cloudflare.Acm reference](https://alchemy.run/providers/cloudflare/acm) — Resources and capabilities for Cloudflare.Acm. - [Cloudflare.Addressing reference](https://alchemy.run/providers/cloudflare/addressing) — Resources and capabilities for Cloudflare.Addressing. - [Cloudflare.AI reference](https://alchemy.run/providers/cloudflare/ai) — Resources and capabilities for Cloudflare.AI. - [Cloudflare.Alerting reference](https://alchemy.run/providers/cloudflare/alerting) — Resources and capabilities for Cloudflare.Alerting. - [Cloudflare.AnalyticsEngine reference](https://alchemy.run/providers/cloudflare/analyticsengine) — Resources and capabilities for Cloudflare.AnalyticsEngine. - [Cloudflare.ApiShield reference](https://alchemy.run/providers/cloudflare/apishield) — Resources and capabilities for Cloudflare.ApiShield. - [Cloudflare.ApiToken reference](https://alchemy.run/providers/cloudflare/apitoken) — Resources and capabilities for Cloudflare.ApiToken. - [Cloudflare.Argo reference](https://alchemy.run/providers/cloudflare/argo) — Resources and capabilities for Cloudflare.Argo. - [Cloudflare.Artifacts reference](https://alchemy.run/providers/cloudflare/artifacts) — Resources and capabilities for Cloudflare.Artifacts. - [Cloudflare.BotManagement reference](https://alchemy.run/providers/cloudflare/botmanagement) — Resources and capabilities for Cloudflare.BotManagement. - [Cloudflare.Cache reference](https://alchemy.run/providers/cloudflare/cache) — Resources and capabilities for Cloudflare.Cache. - [Cloudflare.Calls reference](https://alchemy.run/providers/cloudflare/calls) — Resources and capabilities for Cloudflare.Calls. - [Cloudflare.CertificateAuthorities reference](https://alchemy.run/providers/cloudflare/certificateauthorities) — Resources and capabilities for Cloudflare.CertificateAuthorities. - [Cloudflare.ClientCertificate reference](https://alchemy.run/providers/cloudflare/clientcertificate) — Resources and capabilities for Cloudflare.ClientCertificate. - [Cloudflare.CloudConnector reference](https://alchemy.run/providers/cloudflare/cloudconnector) — Resources and capabilities for Cloudflare.CloudConnector. - [Cloudflare.CloudforceOne reference](https://alchemy.run/providers/cloudflare/cloudforceone) — Resources and capabilities for Cloudflare.CloudforceOne. - [Cloudflare.Connectivity reference](https://alchemy.run/providers/cloudflare/connectivity) — Resources and capabilities for Cloudflare.Connectivity. - [Cloudflare.Containers reference](https://alchemy.run/providers/cloudflare/containers) — Resources and capabilities for Cloudflare.Containers. - [Cloudflare.ContentScanning reference](https://alchemy.run/providers/cloudflare/contentscanning) — Resources and capabilities for Cloudflare.ContentScanning. - [Cloudflare.CustomCertificate reference](https://alchemy.run/providers/cloudflare/customcertificate) — Resources and capabilities for Cloudflare.CustomCertificate. - [Cloudflare.CustomHostname reference](https://alchemy.run/providers/cloudflare/customhostname) — Resources and capabilities for Cloudflare.CustomHostname. - [Cloudflare.CustomNameserver reference](https://alchemy.run/providers/cloudflare/customnameserver) — Resources and capabilities for Cloudflare.CustomNameserver. - [Cloudflare.D1 reference](https://alchemy.run/providers/cloudflare/d1) — Resources and capabilities for Cloudflare.D1. - [Cloudflare.DdosProtection reference](https://alchemy.run/providers/cloudflare/ddosprotection) — Resources and capabilities for Cloudflare.DdosProtection. - [Cloudflare.Devices reference](https://alchemy.run/providers/cloudflare/devices) — Resources and capabilities for Cloudflare.Devices. - [Cloudflare.Diagnostics reference](https://alchemy.run/providers/cloudflare/diagnostics) — Resources and capabilities for Cloudflare.Diagnostics. - [Cloudflare.Dlp reference](https://alchemy.run/providers/cloudflare/dlp) — Resources and capabilities for Cloudflare.Dlp. - [Cloudflare.DNS reference](https://alchemy.run/providers/cloudflare/dns) — Resources and capabilities for Cloudflare.DNS. - [Cloudflare.Email reference](https://alchemy.run/providers/cloudflare/email) — Resources and capabilities for Cloudflare.Email. - [Cloudflare.Firewall reference](https://alchemy.run/providers/cloudflare/firewall) — Resources and capabilities for Cloudflare.Firewall. - [Cloudflare.Flagship reference](https://alchemy.run/providers/cloudflare/flagship) — Resources and capabilities for Cloudflare.Flagship. - [Cloudflare.Fraud reference](https://alchemy.run/providers/cloudflare/fraud) — Resources and capabilities for Cloudflare.Fraud. - [Cloudflare.Gateway reference](https://alchemy.run/providers/cloudflare/gateway) — Resources and capabilities for Cloudflare.Gateway. - [Cloudflare.GoogleTagGateway reference](https://alchemy.run/providers/cloudflare/googletaggateway) — Resources and capabilities for Cloudflare.GoogleTagGateway. - [Cloudflare.Healthcheck reference](https://alchemy.run/providers/cloudflare/healthcheck) — Resources and capabilities for Cloudflare.Healthcheck. - [Cloudflare.HostnameTlsSetting reference](https://alchemy.run/providers/cloudflare/hostnametlssetting) — Resources and capabilities for Cloudflare.HostnameTlsSetting. - [Cloudflare.Hyperdrive reference](https://alchemy.run/providers/cloudflare/hyperdrive) — Resources and capabilities for Cloudflare.Hyperdrive. - [Cloudflare.Iam reference](https://alchemy.run/providers/cloudflare/iam) — Resources and capabilities for Cloudflare.Iam. - [Cloudflare.Images reference](https://alchemy.run/providers/cloudflare/images) — Resources and capabilities for Cloudflare.Images. - [Cloudflare.Intel reference](https://alchemy.run/providers/cloudflare/intel) — Resources and capabilities for Cloudflare.Intel. - [Cloudflare.KeylessCertificate reference](https://alchemy.run/providers/cloudflare/keylesscertificate) — Resources and capabilities for Cloudflare.KeylessCertificate. - [Cloudflare.KV reference](https://alchemy.run/providers/cloudflare/kv) — Resources and capabilities for Cloudflare.KV. - [Cloudflare.LeakedCredentialCheck reference](https://alchemy.run/providers/cloudflare/leakedcredentialcheck) — Resources and capabilities for Cloudflare.LeakedCredentialCheck. - [Cloudflare.LoadBalancer reference](https://alchemy.run/providers/cloudflare/loadbalancer) — Resources and capabilities for Cloudflare.LoadBalancer. - [Cloudflare.Logpush reference](https://alchemy.run/providers/cloudflare/logpush) — Resources and capabilities for Cloudflare.Logpush. - [Cloudflare.LogsControl reference](https://alchemy.run/providers/cloudflare/logscontrol) — Resources and capabilities for Cloudflare.LogsControl. - [Cloudflare.MagicCloudNetworking reference](https://alchemy.run/providers/cloudflare/magiccloudnetworking) — Resources and capabilities for Cloudflare.MagicCloudNetworking. - [Cloudflare.MagicNetworkMonitoring reference](https://alchemy.run/providers/cloudflare/magicnetworkmonitoring) — Resources and capabilities for Cloudflare.MagicNetworkMonitoring. - [Cloudflare.MagicTransit reference](https://alchemy.run/providers/cloudflare/magictransit) — Resources and capabilities for Cloudflare.MagicTransit. - [Cloudflare.ManagedTransforms reference](https://alchemy.run/providers/cloudflare/managedtransforms) — Resources and capabilities for Cloudflare.ManagedTransforms. - [Cloudflare.MtlsCertificate reference](https://alchemy.run/providers/cloudflare/mtlscertificate) — Resources and capabilities for Cloudflare.MtlsCertificate. - [Cloudflare.NetworkInterconnects reference](https://alchemy.run/providers/cloudflare/networkinterconnects) — Resources and capabilities for Cloudflare.NetworkInterconnects. - [Cloudflare.Organization reference](https://alchemy.run/providers/cloudflare/organization) — Resources and capabilities for Cloudflare.Organization. - [Cloudflare.OriginCaCertificate reference](https://alchemy.run/providers/cloudflare/origincacertificate) — Resources and capabilities for Cloudflare.OriginCaCertificate. - [Cloudflare.OriginPostQuantumEncryption reference](https://alchemy.run/providers/cloudflare/originpostquantumencryption) — Resources and capabilities for Cloudflare.OriginPostQuantumEncryption. - [Cloudflare.OriginTlsClientAuth reference](https://alchemy.run/providers/cloudflare/origintlsclientauth) — Resources and capabilities for Cloudflare.OriginTlsClientAuth. - [Cloudflare.PageRule reference](https://alchemy.run/providers/cloudflare/pagerule) — Resources and capabilities for Cloudflare.PageRule. - [Cloudflare.Pages reference](https://alchemy.run/providers/cloudflare/pages) — Resources and capabilities for Cloudflare.Pages. - [Cloudflare.PageShield reference](https://alchemy.run/providers/cloudflare/pageshield) — Resources and capabilities for Cloudflare.PageShield. - [Cloudflare.Pipelines reference](https://alchemy.run/providers/cloudflare/pipelines) — Resources and capabilities for Cloudflare.Pipelines. - [Cloudflare.Queues reference](https://alchemy.run/providers/cloudflare/queues) — Resources and capabilities for Cloudflare.Queues. - [Cloudflare.R2 reference](https://alchemy.run/providers/cloudflare/r2) — Resources and capabilities for Cloudflare.R2. - [Cloudflare.RealtimeKit reference](https://alchemy.run/providers/cloudflare/realtimekit) — Resources and capabilities for Cloudflare.RealtimeKit. - [Cloudflare.RegionalHostname reference](https://alchemy.run/providers/cloudflare/regionalhostname) — Resources and capabilities for Cloudflare.RegionalHostname. - [Cloudflare.Registrar reference](https://alchemy.run/providers/cloudflare/registrar) — Resources and capabilities for Cloudflare.Registrar. - [Cloudflare.ResourceSharing reference](https://alchemy.run/providers/cloudflare/resourcesharing) — Resources and capabilities for Cloudflare.ResourceSharing. - [Cloudflare.RiskScoring reference](https://alchemy.run/providers/cloudflare/riskscoring) — Resources and capabilities for Cloudflare.RiskScoring. - [Cloudflare.Rules reference](https://alchemy.run/providers/cloudflare/rules) — Resources and capabilities for Cloudflare.Rules. - [Cloudflare.Ruleset reference](https://alchemy.run/providers/cloudflare/ruleset) — Resources and capabilities for Cloudflare.Ruleset. - [Cloudflare.Rum reference](https://alchemy.run/providers/cloudflare/rum) — Resources and capabilities for Cloudflare.Rum. - [Cloudflare.SchemaValidation reference](https://alchemy.run/providers/cloudflare/schemavalidation) — Resources and capabilities for Cloudflare.SchemaValidation. - [Cloudflare.SecretsStore reference](https://alchemy.run/providers/cloudflare/secretsstore) — Resources and capabilities for Cloudflare.SecretsStore. - [Cloudflare.SecurityTxt reference](https://alchemy.run/providers/cloudflare/securitytxt) — Resources and capabilities for Cloudflare.SecurityTxt. - [Cloudflare.Snippets reference](https://alchemy.run/providers/cloudflare/snippets) — Resources and capabilities for Cloudflare.Snippets. - [Cloudflare.Spectrum reference](https://alchemy.run/providers/cloudflare/spectrum) — Resources and capabilities for Cloudflare.Spectrum. - [Cloudflare.Speed reference](https://alchemy.run/providers/cloudflare/speed) — Resources and capabilities for Cloudflare.Speed. - [Cloudflare.Ssl reference](https://alchemy.run/providers/cloudflare/ssl) — Resources and capabilities for Cloudflare.Ssl. - [Cloudflare.Stream reference](https://alchemy.run/providers/cloudflare/stream) — Resources and capabilities for Cloudflare.Stream. - [Cloudflare.Tags reference](https://alchemy.run/providers/cloudflare/tags) — Resources and capabilities for Cloudflare.Tags. - [Cloudflare.TokenValidation reference](https://alchemy.run/providers/cloudflare/tokenvalidation) — Resources and capabilities for Cloudflare.TokenValidation. - [Cloudflare.Tunnel reference](https://alchemy.run/providers/cloudflare/tunnel) — Resources and capabilities for Cloudflare.Tunnel. - [Cloudflare.Turnstile reference](https://alchemy.run/providers/cloudflare/turnstile) — Resources and capabilities for Cloudflare.Turnstile. - [Cloudflare.UrlNormalization reference](https://alchemy.run/providers/cloudflare/urlnormalization) — Resources and capabilities for Cloudflare.UrlNormalization. - [Cloudflare.Vectorize reference](https://alchemy.run/providers/cloudflare/vectorize) — Resources and capabilities for Cloudflare.Vectorize. - [Cloudflare.VpcService reference](https://alchemy.run/providers/cloudflare/vpcservice) — Resources and capabilities for Cloudflare.VpcService. - [Cloudflare.VulnerabilityScanner reference](https://alchemy.run/providers/cloudflare/vulnerabilityscanner) — Resources and capabilities for Cloudflare.VulnerabilityScanner. - [Cloudflare.WaitingRoom reference](https://alchemy.run/providers/cloudflare/waitingroom) — Resources and capabilities for Cloudflare.WaitingRoom. - [Cloudflare.Web3 reference](https://alchemy.run/providers/cloudflare/web3) — Resources and capabilities for Cloudflare.Web3. - [Cloudflare.Website reference](https://alchemy.run/providers/cloudflare/website) — Resources and capabilities for Cloudflare.Website. - [Cloudflare.Workers reference](https://alchemy.run/providers/cloudflare/workers) — Resources and capabilities for Cloudflare.Workers. - [Cloudflare.WorkersForPlatforms reference](https://alchemy.run/providers/cloudflare/workersforplatforms) — Resources and capabilities for Cloudflare.WorkersForPlatforms. - [Cloudflare.Workflows reference](https://alchemy.run/providers/cloudflare/workflows) — Resources and capabilities for Cloudflare.Workflows. - [Cloudflare.Zaraz reference](https://alchemy.run/providers/cloudflare/zaraz) — Resources and capabilities for Cloudflare.Zaraz. - [Cloudflare.Zone reference](https://alchemy.run/providers/cloudflare/zone) — Resources and capabilities for Cloudflare.Zone. ### Command - [Command reference](https://alchemy.run/providers/command/reference) — Resources and capabilities for Command. ### Docker - [Docker.Container reference](https://alchemy.run/providers/docker/reference/container) — Resources and capabilities for Docker.Container. - [Docker.Context reference](https://alchemy.run/providers/docker/reference/context) — Resources and capabilities for Docker.Context. - [Docker.Image reference](https://alchemy.run/providers/docker/reference/image) — Resources and capabilities for Docker.Image. - [Docker.Network reference](https://alchemy.run/providers/docker/reference/network) — Resources and capabilities for Docker.Network. - [Docker.Swarm reference](https://alchemy.run/providers/docker/reference/swarm) — Resources and capabilities for Docker.Swarm. - [Docker.Volume reference](https://alchemy.run/providers/docker/reference/volume) — Resources and capabilities for Docker.Volume. ### Drizzle - [Drizzle reference](https://alchemy.run/providers/drizzle/reference) — Resources and capabilities for Drizzle. ### Fly - [Fly.App reference](https://alchemy.run/providers/fly/reference/app) — Resources and capabilities for Fly.App. - [Fly.Bucket reference](https://alchemy.run/providers/fly/reference/bucket) — Resources and capabilities for Fly.Bucket. - [Fly.Certificate reference](https://alchemy.run/providers/fly/reference/certificate) — Resources and capabilities for Fly.Certificate. - [Fly.Machine reference](https://alchemy.run/providers/fly/reference/machine) — Resources and capabilities for Fly.Machine. - [Fly.Postgres reference](https://alchemy.run/providers/fly/reference/postgres) — Resources and capabilities for Fly.Postgres. - [Fly.Redis reference](https://alchemy.run/providers/fly/reference/redis) — Resources and capabilities for Fly.Redis. - [Fly.Secret Key reference](https://alchemy.run/providers/fly/reference/secret-key) — Resources and capabilities for Fly.Secret Key. - [Fly.Secret reference](https://alchemy.run/providers/fly/reference/secret) — Resources and capabilities for Fly.Secret. - [Fly.Service reference](https://alchemy.run/providers/fly/reference/service) — Resources and capabilities for Fly.Service. - [Fly.Sprite reference](https://alchemy.run/providers/fly/reference/sprite) — Resources and capabilities for Fly.Sprite. - [Fly.Volume reference](https://alchemy.run/providers/fly/reference/volume) — Resources and capabilities for Fly.Volume. - [Fly.Website reference](https://alchemy.run/providers/fly/website) — Resources and capabilities for Fly.Website. ### Git - [Git reference](https://alchemy.run/providers/git/reference) — Resources and capabilities for Git. ### GitHub - [GitHub.Actions reference](https://alchemy.run/providers/github/reference/actions) — Resources and capabilities for GitHub.Actions. - [GitHub.Issue reference](https://alchemy.run/providers/github/reference/issue) — Resources and capabilities for GitHub.Issue. - [GitHub.Pull Request reference](https://alchemy.run/providers/github/reference/pull-request) — Resources and capabilities for GitHub.Pull Request. - [GitHub.Release reference](https://alchemy.run/providers/github/reference/release) — Resources and capabilities for GitHub.Release. - [GitHub.Repository reference](https://alchemy.run/providers/github/reference/repository) — Resources and capabilities for GitHub.Repository. - [GitHub.Webhook reference](https://alchemy.run/providers/github/reference/webhook) — Resources and capabilities for GitHub.Webhook. ### Hetzner - [Hetzner.Certificate reference](https://alchemy.run/providers/hetzner/reference/certificate) — Resources and capabilities for Hetzner.Certificate. - [Hetzner.DNS reference](https://alchemy.run/providers/hetzner/reference/dns) — Resources and capabilities for Hetzner.DNS. - [Hetzner.Firewall reference](https://alchemy.run/providers/hetzner/reference/firewall) — Resources and capabilities for Hetzner.Firewall. - [Hetzner.IP Address reference](https://alchemy.run/providers/hetzner/reference/ip-address) — Resources and capabilities for Hetzner.IP Address. - [Hetzner.Load Balancer reference](https://alchemy.run/providers/hetzner/reference/load-balancer) — Resources and capabilities for Hetzner.Load Balancer. - [Hetzner.Network reference](https://alchemy.run/providers/hetzner/reference/network) — Resources and capabilities for Hetzner.Network. - [Hetzner.Server reference](https://alchemy.run/providers/hetzner/reference/server) — Resources and capabilities for Hetzner.Server. - [Hetzner.Service reference](https://alchemy.run/providers/hetzner/reference/service) — Resources and capabilities for Hetzner.Service. - [Hetzner.Volume reference](https://alchemy.run/providers/hetzner/reference/volume) — Resources and capabilities for Hetzner.Volume. - [Hetzner.Website reference](https://alchemy.run/providers/hetzner/website) — Resources and capabilities for Hetzner.Website. ### Kubernetes - [Kubernetes.Helm reference](https://alchemy.run/providers/kubernetes/reference/helm) — Resources and capabilities for Kubernetes.Helm. - [Kubernetes.Manifest reference](https://alchemy.run/providers/kubernetes/reference/manifest) — Resources and capabilities for Kubernetes.Manifest. - [Kubernetes.Workloads reference](https://alchemy.run/providers/kubernetes/reference/workloads) — Resources and capabilities for Kubernetes.Workloads. ### Neon - [Neon.AI Gateway reference](https://alchemy.run/providers/neon/reference/ai-gateway) — Resources and capabilities for Neon.AI Gateway. - [Neon.Auth reference](https://alchemy.run/providers/neon/reference/auth) — Resources and capabilities for Neon.Auth. - [Neon.Branch reference](https://alchemy.run/providers/neon/reference/branch) — Resources and capabilities for Neon.Branch. - [Neon.Bucket reference](https://alchemy.run/providers/neon/reference/bucket) — Resources and capabilities for Neon.Bucket. - [Neon.Credential reference](https://alchemy.run/providers/neon/reference/credential) — Resources and capabilities for Neon.Credential. - [Neon.Data API reference](https://alchemy.run/providers/neon/reference/data-api) — Resources and capabilities for Neon.Data API. - [Neon.Function reference](https://alchemy.run/providers/neon/reference/function) — Resources and capabilities for Neon.Function. - [Neon.Organization reference](https://alchemy.run/providers/neon/reference/organization) — Resources and capabilities for Neon.Organization. - [Neon.Project reference](https://alchemy.run/providers/neon/reference/project) — Resources and capabilities for Neon.Project. - [Neon.Website reference](https://alchemy.run/providers/neon/website) — Resources and capabilities for Neon.Website. ### Planetscale - [Planetscale.MySQL reference](https://alchemy.run/providers/planetscale/mysql) — Resources and capabilities for Planetscale.MySQL. - [Planetscale.Postgres reference](https://alchemy.run/providers/planetscale/postgres) — Resources and capabilities for Planetscale.Postgres. ### Prisma - [Prisma.Bucket reference](https://alchemy.run/providers/prisma/reference/bucket) — Resources and capabilities for Prisma.Bucket. - [Prisma.Compute reference](https://alchemy.run/providers/prisma/reference/compute) — Resources and capabilities for Prisma.Compute. - [Prisma.ORM reference](https://alchemy.run/providers/prisma/orm) — Resources and capabilities for Prisma.ORM. - [Prisma.Postgres reference](https://alchemy.run/providers/prisma/reference/postgres) — Resources and capabilities for Prisma.Postgres. - [Prisma.Project reference](https://alchemy.run/providers/prisma/reference/project) — Resources and capabilities for Prisma.Project. - [Prisma.Website reference](https://alchemy.run/providers/prisma/website) — Resources and capabilities for Prisma.Website. ### Railway - [Railway.Bucket reference](https://alchemy.run/providers/railway/reference/bucket) — Resources and capabilities for Railway.Bucket. - [Railway.Cloud Agent reference](https://alchemy.run/providers/railway/reference/cloud-agent) — Resources and capabilities for Railway.Cloud Agent. - [Railway.Function reference](https://alchemy.run/providers/railway/reference/function) — Resources and capabilities for Railway.Function. - [Railway.MongoDB reference](https://alchemy.run/providers/railway/reference/mongodb) — Resources and capabilities for Railway.MongoDB. - [Railway.MySQL reference](https://alchemy.run/providers/railway/reference/mysql) — Resources and capabilities for Railway.MySQL. - [Railway.Networking reference](https://alchemy.run/providers/railway/reference/networking) — Resources and capabilities for Railway.Networking. - [Railway.Postgres reference](https://alchemy.run/providers/railway/reference/postgres) — Resources and capabilities for Railway.Postgres. - [Railway.Project reference](https://alchemy.run/providers/railway/reference/project) — Resources and capabilities for Railway.Project. - [Railway.Redis reference](https://alchemy.run/providers/railway/reference/redis) — Resources and capabilities for Railway.Redis. - [Railway.Sandbox reference](https://alchemy.run/providers/railway/reference/sandbox) — Resources and capabilities for Railway.Sandbox. - [Railway.Service reference](https://alchemy.run/providers/railway/reference/service) — Resources and capabilities for Railway.Service. - [Railway.Volume reference](https://alchemy.run/providers/railway/reference/volume) — Resources and capabilities for Railway.Volume. - [Railway.Website reference](https://alchemy.run/providers/railway/website) — Resources and capabilities for Railway.Website. - [Railway.Workspace reference](https://alchemy.run/providers/railway/reference/workspace) — Resources and capabilities for Railway.Workspace. ### SQL - [SQL reference](https://alchemy.run/providers/sql/reference) — Resources and capabilities for SQL. ### Stripe - [Stripe.Account reference](https://alchemy.run/providers/stripe/reference/account) — Resources and capabilities for Stripe.Account. - [Stripe.Billing reference](https://alchemy.run/providers/stripe/reference/billing) — Resources and capabilities for Stripe.Billing. - [Stripe.Checkout reference](https://alchemy.run/providers/stripe/reference/checkout) — Resources and capabilities for Stripe.Checkout. - [Stripe.Customer reference](https://alchemy.run/providers/stripe/reference/customer) — Resources and capabilities for Stripe.Customer. - [Stripe.Entitlements reference](https://alchemy.run/providers/stripe/reference/entitlements) — Resources and capabilities for Stripe.Entitlements. - [Stripe.Files reference](https://alchemy.run/providers/stripe/reference/files) — Resources and capabilities for Stripe.Files. - [Stripe.Issuing reference](https://alchemy.run/providers/stripe/reference/issuing) — Resources and capabilities for Stripe.Issuing. - [Stripe.Payment Methods reference](https://alchemy.run/providers/stripe/reference/payment-methods) — Resources and capabilities for Stripe.Payment Methods. - [Stripe.Product reference](https://alchemy.run/providers/stripe/reference/product) — Resources and capabilities for Stripe.Product. - [Stripe.Radar reference](https://alchemy.run/providers/stripe/reference/radar) — Resources and capabilities for Stripe.Radar. - [Stripe.Secrets reference](https://alchemy.run/providers/stripe/reference/secrets) — Resources and capabilities for Stripe.Secrets. - [Stripe.Tax reference](https://alchemy.run/providers/stripe/reference/tax) — Resources and capabilities for Stripe.Tax. - [Stripe.Terminal reference](https://alchemy.run/providers/stripe/reference/terminal) — Resources and capabilities for Stripe.Terminal. - [Stripe.Webhook reference](https://alchemy.run/providers/stripe/reference/webhook) — Resources and capabilities for Stripe.Webhook. ### Website - [Website reference](https://alchemy.run/providers/website/reference) — Resources and capabilities for Website.