Exec
Execute commands in the shell.
This module is used to execute commands in the shell. Add as many instances of this module as you need to execute commands in the shell.
modules::shell::ExecModuleSample Configuration
- class: modules::shell::ExecModule
config:
exec:
- bun run --enable-source-maps index-production.jsConfiguration
The commands to execute. It's a pipeline, it will run one after the other in the same folder. The commands are all executed in different processes. Which means you cannot connect commands like
- cd path/to/project
- npm run buildInstead, you need to connect them under the same command line.
- cd path/to/project && npm run build