Skip to content
GitHubXDiscordRSS

404

Page not found. Check the URL or try using the search bar.

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"
});