tasks.json 603 B

12345678910111213141516171819202122
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "musare.sh update",
  8. "type": "shell",
  9. "command": "./musare.sh update"
  10. },
  11. {
  12. "label": "musare.sh start",
  13. "type": "shell",
  14. "command": "./musare.sh start"
  15. },
  16. {
  17. "label": "musare.sh attach backend",
  18. "type": "shell",
  19. "command": "konsole . -e ./musare.sh attach backend & disown"
  20. }
  21. ]
  22. }