Logo

Command Palette

Search for a command to run...

jobs run

Runs the given job once with the given parameters.

$ cx jobs run --stack <application name> --arg [--arg option --arg option] <job name>

Options

ArgumentRequired?DefaultDescription
--stack, -s <application name>yesFull or partial name of the application
<job name>yesThe name of the job
--arg [--arg option --arg option]noParameters to be passed to the job

Examples

$ cx job run -s "My Awesome App" my_job
$ cx job run -s "My Awesome App" --arg "arg1" --arg "arg2" my_job