mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* fix: simplify tmux session creation in paseo.json * fix: unify agent attention notification payloads
16 lines
471 B
JSON
16 lines
471 B
JSON
{
|
|
"worktree": {
|
|
"setup": [
|
|
"npm ci",
|
|
"npm run build --workspace=@getpaseo/relay",
|
|
"cp \"$PASEO_SOURCE_CHECKOUT_PATH/packages/server/.env\" \"$PASEO_WORKTREE_PATH/packages/server/.env\""
|
|
],
|
|
"terminals": [
|
|
{
|
|
"name": "dev",
|
|
"command": "SESSION_NAME=\"${PWD##*/}\"; if ! tmux has-session -t \"$SESSION_NAME\" 2>/dev/null; then tmux new-session -d -s \"$SESSION_NAME\" -c \"$PWD\" \"npm run dev\"; fi"
|
|
}
|
|
]
|
|
}
|
|
}
|