[go: up one dir, main page]

Skip to content
sst.config.ts
const db = new planetscale.Database("Db")
const email = new sst.aws.Email("Email", {
sender: "mail@example.com"
})
const api = new sst.aws.Service("Api", {
memory: "4 GB",
image: "./rails",
link: [db, email]
})
const web = new sst.aws.Nextjs("Web", {
link: [api],
path: "./nextjs",
domain: "example.com",
dns: sst.cloudflare.dns()
})

For whatever you build.

Deploy everything your app needs with a single config.

Loved by thousands of teams