Use this module to run shell commands as part of engine startup — building assets, running migrations, or starting long-lived processes like a production server.Documentation Index
Fetch the complete documentation index at: https://motiadev-chore-content-updates-2.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Sample Configuration
Configuration
The commands to execute as a sequential pipeline. Each command runs in its own process. Intermediate commands must exit successfully before the next one starts; the final command is kept running as a long-lived process.Because each entry is a separate process, you cannot share shell state between entries. Use If an intermediate command exits with a non-zero code, the pipeline stops and the remaining commands are skipped.
&& to chain operations that must share a working directory:Glob patterns that trigger a full pipeline restart on file change. See the warning below for matching limitations.