Skip to content

Instantly share code, notes, and snippets.

@mc256
Created July 3, 2023 21:49
Show Gist options
  • Save mc256/357a867b8b21bbcc571c5469d127a1d8 to your computer and use it in GitHub Desktop.
Save mc256/357a867b8b21bbcc571c5469d127a1d8 to your computer and use it in GitHub Desktop.
VSCode configuration for Starlight
{
"version": "0.2.0",
"configurations": [
{
"name": "Starlight Proxy",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "cmd/starlight-proxy/main.go",
},
{
"name": "Starlight Daemon",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "cmd/starlight-daemon/main.go",
},
{
"name": "Starlight CLI",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "cmd/ctr-starlight/main.go",
"args": ["--help"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment