ubx init creates a new ubx project directory with a ubx.yaml config file and a starter stack.iac.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Scaffold a new ubx project.
ubx init creates a new ubx project directory with a ubx.yaml config file and a starter stack.iac.
ubx init [project-name]
ubx init my-platform
cd my-platform
my-platform/
ubx.yaml # project config
stack.iac # starter infrastructure file
.ubxignore # excludes .ubx/ from compilation
.gitignore # excludes .ubx/ from git
ubx.yamlproject: my-platform
backend: file://.ubx/state
defaultEnv: dev
stack.iacinput "env" {
type = "string"
default = "dev"
}
ubx validate # check for errors
ubx plan # preview what will deploy
ubx apply # deploy
