Initial commit - frontend
This commit is contained in:
61
.vscode/tasks.json
vendored
Normal file
61
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Start DEV Server",
|
||||
"type": "shell",
|
||||
"command": "echo -ne '\\033]0;DEV Webserver\\007'; npm run dev:https",
|
||||
"options": {
|
||||
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
|
||||
},
|
||||
"presentation": {
|
||||
"panel": "dedicated",
|
||||
"clear": true,
|
||||
"showReuseMessage": false
|
||||
},
|
||||
"isBackground": true,
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Start PROD Server",
|
||||
"type": "shell",
|
||||
"command": "echo -ne '\\033]0;PROD Webserver\\007'; npm run start:prod",
|
||||
"options": {
|
||||
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
|
||||
},
|
||||
"presentation": {
|
||||
"panel": "dedicated",
|
||||
"clear": true,
|
||||
"showReuseMessage": false
|
||||
},
|
||||
"isBackground": true,
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Open SCRATCH Terminal",
|
||||
"detail": "SCRATCH Terminal",
|
||||
"type": "shell",
|
||||
"command": "echo -ne '\\033]0;SCRATCH Terminal\\007'; exec bash --login -i",
|
||||
"options": {
|
||||
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
|
||||
},
|
||||
"presentation": {
|
||||
"panel": "dedicated",
|
||||
"clear": true,
|
||||
"showReuseMessage": false
|
||||
},
|
||||
"isBackground": true,
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Launch All Terminals",
|
||||
"dependsOn": [
|
||||
"Start DEV Server",
|
||||
"Start PROD Server",
|
||||
"Open SCRATCH Terminal"
|
||||
],
|
||||
"dependsOrder": "parallel",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user