Skip to content

Deploy-only file

A file whose only meaningful content is a deploy block.

View the source on GitHub · Open in the app

Deploy view
Deploy view
deploy-only/index.krs
// Minimal example: a .krs file with only a deploy block (no system).
// Used to demonstrate that the preview auto-selects the Deploy tab
// when the file has no system block (Issue #766).
deploy Production {
label "Production environment"
oci "web" {
label "Web frontend"
image "web:1.0.0"
runtime "Node.js 22 / Next.js"
realizes Storefront
}
lambda "order-handler" {
label "Order handler"
runtime "Node.js 22"
realizes OrderAPI
}
assets "static-assets" {
label "Static assets"
runtime "CloudFront / S3"
}
}

© 2026 Hiroki Kondo · Licensed under Apache-2.0