.tembo.json
file in your repository root. These hooks execute shell commands at predefined lifecycle events, giving you full control over how Tembo interacts with your codebase and development environment.
.tembo.json
file in your repository root with the following structure:
postClone
npm install
, pip install -r requirements.txt
)prePush
eslint
, prettier
, black
)onFinish
postClone
and prePush
hooks, failures will cause the entire issue resolution process to failonFinish
hooks, failures are logged but don’t affect the overall success of the solution&&
operatorsnpm ci
instead of npm install
)prePush
hooksset -e
in shell scripts to fail fast on errors.tembo.json
filepostClone
hookecho
statements to track hook progress