hln_up
hln upβ
Spin up your application
Synopsisβ
This command run a stack.
You should use '-s' or '--stack' to specify the stack. Use 'list stacks' subcommand to check all available stacks. Alternatively, you can use '--dir' flag to specify a local directory as your stack source. If you don't specify both '-s' and '--dir' flag, it will use current working directory by default:
$ hln up [appName] -s gin-next
or
$ hln up [appName] --dir /path/to/your/stack
To set values in a stack, use '-s' or '--stack' flag to specify a stack, use the '--set' flag and pass configuration from the command line:
$ hln up [appName] -s gin-next --set foo=bar
You can specify the '--set' flag multiple times. The priority will be given to the last (right-most) set specified. For example, if both 'bar' and 'newbar' values are set for a key called 'foo', the 'newbar' value would take precedence:
$ hln up [appName] -s gin-next --set foo=bar --set foo=newbar
Simply set '-i' or '--interactive' flag and it will run the stack interactively. You can fill your input values according to the prompts:
$ hln up [appName] -s gin-next -i
hln up [appName] [flags]
Optionsβ
--dir string Path to your local stack
-h, --help help for up
-i, --interactive If this flag is set, heighliner will promt dialog when necessary.
--no-cache Disable caching
--set stringArray The input values of your project
-s, --stack string Name of your stack
Options inherited from parent commandsβ
--log-format string Log format (auto, plain, json) (default "plain")
-l, --log-level string Log level (default "info")
SEE ALSOβ
- hln - Heighliner: Cloud native best practices to build and deploy your applications