Skip to content

Commit

Permalink
tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasptsch committed Aug 11, 2024
1 parent 06a764e commit b7c201a
Showing 1 changed file with 54 additions and 2 deletions.
56 changes: 54 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,56 @@
{
"version": "2.0.0",
"tasks": []
}
"tasks": [
{
"label": "Backend Dev",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/packages/backend"
},
"command": "pnpm dev",
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": true,
"beginsPattern": "Migrating database",
}
}
},
{
"label": "Frontend Dev",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/packages/frontend"
},
"command": "pnpm dev",
"dependsOn": [
"Backend Dev"
],
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": true,
"beginsPattern": "ready in",
}
}
},
{
"label": "Bot Dev",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/packages/bot",
},
"command": "pnpm dev",
"dependsOn": [
"Backend Dev"
],
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": true,
"beginsPattern": "Bot is ready",
}
}
}
]
}

0 comments on commit b7c201a

Please sign in to comment.