Redwood
This guide shows how to initialize and deploy a RedwoodJS application to Cloudflare using Alchemy.
Init
Start by creating a new Redwood project with Alchemy:
bunx alchemy create my-redwood-app --template=rwsdk
cd my-redwood-app
npx alchemy create my-redwood-app --template=rwsdk
cd my-redwood-app
pnpm dlx alchemy create my-redwood-app --template=rwsdk
cd my-redwood-app
yarn dlx alchemy create my-redwood-app --template=rwsdk
cd my-redwood-app
Login
Authenticate once with your Cloudflare account:
bun wrangler login
npx wrangler login
pnpm wrangler login
yarn wrangler login
TIP
Alchemy automatically re-uses your Wrangler OAuth tokens. See the Cloudflare Auth guide for other options.
Deploy
Run the deploy script generated by the template:
bun run deploy
npm run deploy
pnpm run deploy
yarn run deploy
You'll get the live URL of your Redwood application:
{
url: "https://website.<your-account>.workers.dev",
}
Local Development
Work locally using the dev script:
bun run dev
npm run dev
pnpm run dev
yarn run dev
Destroy
Clean up all Cloudflare resources created by this stack:
bun run destroy
npm run destroy
pnpm run destroy
yarn run destroy
Explore
.env
Alchemy requires a locally set password to encrypt Secrets that are stored in state. Be sure to change this.
NOTE
See the Secret documentation to learn more.
ALCHEMY_PASSWORD=change-me
alchemy.run.ts
/// <reference types="@types/node" />
import alchemy from "alchemy";
import {
D1Database,
DurableObjectNamespace,
Redwood,
} from "alchemy/cloudflare";
const app = await alchemy("my-redwood-app");
const database = await D1Database("database", {
name: "my-redwood-app-db",
migrationsDir: "drizzle",
});
export const worker = await Redwood("website", {
name: "my-redwood-app-website",
command: "bun run build",
bindings: {
AUTH_SECRET_KEY: alchemy.secret(process.env.AUTH_SECRET_KEY),
DB: database,
SESSION_DURABLE_OBJECT: new DurableObjectNamespace("session", {
className: "SessionDurableObject",
}),
},
});
console.log({
url: worker.url,
});
await app.finalize();
types/env.d.ts
// Auto-generated Cloudflare binding types.
// @see https://alchemy.run/docs/concepts/bindings.html#type-safe-bindings
import type { worker } from "../alchemy.run.ts";
export type CloudflareEnv = typeof worker.Env;
declare global {
type Env = CloudflareEnv;
}
declare module "cloudflare:workers" {
namespace Cloudflare {
export interface Env extends CloudflareEnv {}
}
}
tsconfig.json
The CLI updated the tsconfig.json
to include alchemy.run.ts
and register @cloudflare/workers-types
+ types/env.d.ts
globally
TIP
The alchemy.run.ts
script will be run by node
but still needs to infer the Binding types which depends on @cloudflare/workers-types
:
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"types": ["@cloudflare/workers-types", "./types/env.d.ts"]
},
"include": ["types/**/*.ts", "alchemy.run.ts", "src/**/*.ts"]
}