run
Execute a .star script file.
Usage¶
kite run <script.star> [flags]
kite <script.star> # shorthand (run is implicit)
./script.star # via shebang: #!/usr/bin/env kite
Variable Injection¶
Variables can be injected with the following priority (highest to lowest):
- CLI flags:
--var key=value - Variable files:
--var-file=values.yaml - Default config:
~/.starkite/config.yaml - Environment:
STARKITE_VAR_key=value - Script default:
var_str("key", "default")