Thanks to visit codestin.com
Credit goes to alchemy.run

Skip to content
GitHubXDiscordRSS

Infrastructure as TypeScript

Deploy to Cloudflare, AWS, and more with pure TypeScript. Generate support for any API in minutes with AI.

alchemy.run.ts
const database = await Database("my-database");

const website = await Worker("website", {
  bindings: {
    DB: database,
  },
});

const price = await Price("basic-license", {
  currency: "usd",
  unitAmount: 2999, // $29.99
  product: "prod_xyz"
});
const database = await Database("my-database");

const website = await Worker("website", {
  bindings: {
    DB: database,
  },
});

const price = await Price("basic-license", {
  currency: "usd",
  unitAmount: 2999, // $29.99
  product: "prod_xyz"
});