mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://cdn.statically.io/gh/nguyenngoclongdev/cdn/main/schema/v10/terminal-keeper.json",
|
|
"theme": "tribe",
|
|
"active": "default",
|
|
"activateOnStartup": false,
|
|
"keepExistingTerminals": false,
|
|
"sessions": {
|
|
"default": [
|
|
[
|
|
{
|
|
"name": "frontend",
|
|
"autoExecuteCommands": true,
|
|
"commands": [
|
|
"cd frontend && npx vite"
|
|
]
|
|
},
|
|
{
|
|
"name": "uvicorn",
|
|
"autoExecuteCommands": true,
|
|
"commands": [
|
|
"poetry run uvicorn api.main:app --reload"
|
|
]
|
|
}
|
|
],
|
|
[
|
|
{
|
|
"name": "agent worker",
|
|
"autoExecuteCommands": true,
|
|
"commands": [
|
|
"poetry run python scripts/run_worker.py"
|
|
]
|
|
},
|
|
{
|
|
"name": "trains worker",
|
|
"autoExecuteCommands": true,
|
|
"commands": [
|
|
"poetry run python scripts/run_legacy_worker.py"
|
|
]
|
|
}
|
|
],
|
|
{
|
|
"name": "trains_api",
|
|
"autoExecuteCommands": true,
|
|
"commands": [
|
|
"poetry run python thirdparty/train_api.py"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |