mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
17 lines
457 B
JSON
17 lines
457 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Server",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "./cli/main.go",
|
|
"args": ["server", "--config", ".devcontainer/config.json"],
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"PATH": "${workspaceFolder}/.venv/bin:${env:PATH}"
|
|
}
|
|
}
|
|
]
|
|
} |