Files
play-life/.cursor/commands.json
poignatov b05bd51b5b
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 21s
Вынос play-life-llm в отдельный скрипт runLLM.sh
2026-02-09 12:24:37 +03:00

41 lines
1.4 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"commands": [
{
"name": "init",
"description": "Инициализация Play Life: остановка контейнеров, поднятие сервисов, создание дампа с продакшена и восстановление в локальную базу",
"command": "./init.sh",
"type": "shell",
"cwd": "${workspaceFolder}"
},
{
"name": "run",
"description": "Перезапуск Play Life: перезапуск всех контейнеров",
"command": "./run.sh",
"type": "shell",
"cwd": "${workspaceFolder}"
},
{
"name": "runLLM",
"description": "Запуск/перезапуск play-life-llm (обычно на отдельной машине)",
"command": "./runLLM.sh",
"type": "shell",
"cwd": "${workspaceFolder}"
},
{
"name": "backupFromProd",
"description": "Создание дампа базы данных с продакшена",
"command": "./dump-db.sh",
"type": "shell",
"cwd": "${workspaceFolder}"
},
{
"name": "restoreToLocal",
"description": "Восстановление базы данных из самого свежего дампа в локальную базу (автоматически выбирает последний дамп)",
"command": "./restore-db.sh",
"type": "shell",
"cwd": "${workspaceFolder}"
}
]
}