Quick Start
Deploy your first app with Vyft.
Define your infrastructure
Section titled “Define your infrastructure”Edit vyft.config.ts:
import { service } from "vyft";
export const app = service("app", { image: "node:22-alpine", port: 3000, env: { NODE_ENV: "production", },});Preview changes
Section titled “Preview changes”vyft preview+ urn:vyft:resource:runtime:service:app (create)Deploy
Section titled “Deploy”vyft deployTear down
Section titled “Tear down”vyft destroy