Love coding? here's the secret reason why

This commit is contained in:
coolnsx
2024-11-18 11:43:46 +05:30
parent 218a513d60
commit 014f28a2ce
2 changed files with 60 additions and 0 deletions

39
zed/tasks.json Normal file
View File

@@ -0,0 +1,39 @@
[
{
"label": "Laravel WebServer",
"command": "php artisan serve",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"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": "./vendor/bin/sail up",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "always",
"hide": "never",
"shell": "system"
},
{
"label": "Laravel Sail NPM Start",
"command": "./vendor/bin/sail npm run dev",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "always",
"hide": "never",
"shell": "system"
}
]