Created
July 3, 2023 21:49
-
-
Save mc256/357a867b8b21bbcc571c5469d127a1d8 to your computer and use it in GitHub Desktop.
VSCode configuration for Starlight
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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