CLI
rune run
Section titled “rune run”Runs a Rune project directly from source without building. Rune-managed options (such as --project) must appear before the command name. Everything from the command name onward is passed through to the user’s command as-is.
rune run [options] <command> [command-args...]Options
Section titled “Options”| Option | Type | Description |
|---|---|---|
--project <path> | string | Path to the Rune project root. Defaults to the current directory. |
Examples
Section titled “Examples”rune run hellorune run --project ./my-app hellorune run greet world --loudrune build
Section titled “rune build”Builds a Rune project into a distributable CLI.
rune build [options]Options
Section titled “Options”| Option | Type | Description |
|---|---|---|
--project <path> | string | Path to the Rune project root. Defaults to the current directory. |
Examples
Section titled “Examples”rune buildrune build --project ./my-app