Files
hyprdots/zed/tasks.json
2025-02-03 17:15:30 +05:30

40 lines
943 B
JSON

[
{
"label": "Laravel WebServer",
"command": "php artisan serve",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "never",
"hide": "never",
"shell": "system"
},
{
"label": "Laravel Database",
"command": "php artisan db",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "always",
"hide": "never",
"shell": "system"
},
{
"label": "Laravel Sail Start",
"command": "systemctl is-active docker.socket && ./vendor/bin/sail up",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "always",
"hide": "never",
"shell": "system"
},
{
"label": "Laravel Sail NPM Start",
"command": "systemctl is-active docker.socket && ./vendor/bin/sail npm run dev",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "always",
"hide": "never",
"shell": "system"
}
]