summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 906262d2ffcad8a9024b2ba7f76c672219c23d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"version": "0.2.0",
	"configurations": [
		{
			"name": "Launch Package",
			"type": "go",
			"request": "launch",
			"mode": "auto",
			"program": "${workspaceFolder}/cmd/gotosocial",
			"args": [
				"testrig", "start"
			],
			"cwd": "${workspaceFolder}"
		}
	]
}