mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
Reworked Tasks and logging to prevent overlapping tasks from executing. This is done by reworking the logging process so that the task state is stored and accurately tracked allowing us to check for currently running tasks. Backup and sync tasks also reworked to reduce code redundancy and allow for better error handling Websockets finally fixed and implementation has begun Added Toast notifications
27 lines
730 B
JSON
27 lines
730 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch Chrome against localhost",
|
|
"url": "http://10.0.0.20:3000",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "node-terminal",
|
|
"name": "Run Script: start",
|
|
"request": "launch",
|
|
"command": "npm run start",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
,
|
|
{
|
|
"type": "node-terminal",
|
|
"name": "Run Script: start-server",
|
|
"request": "launch",
|
|
"command": "npm run start-server",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |