mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-05 15:44:21 +00:00
37 lines
862 B
JSON
37 lines
862 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Backend",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/server/cmd/server/main.go",
|
|
"cwd": "${workspaceFolder}",
|
|
"envFile": "${workspaceFolder}/.env.local"
|
|
},
|
|
{
|
|
"name": "Launch Frontend",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["start"],
|
|
"cwd": "${workspaceFolder}/app",
|
|
"console": "integratedTerminal",
|
|
"envFile": "${workspaceFolder}/.env.local"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Launch Backend + Frontend",
|
|
"configurations": ["Launch Backend", "Launch Frontend"],
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "",
|
|
"order": 1
|
|
},
|
|
"stopAll": true
|
|
}
|
|
]
|
|
}
|