gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

launch.json (379B)


      1 {
      2 	"version": "0.2.0",
      3 	"configurations": [
      4 		{
      5 			"name": "Debug Package",
      6 			"type": "go",
      7 			"request": "launch",
      8 			"mode": "debug",
      9 			"program": "${workspaceFolder}/cmd/gotosocial",
     10 			"args": [
     11 				"testrig", "start"
     12 			],
     13 			"buildFlags": "-tags='netgo osusergo static_build kvformat debugenv'",
     14 			"env": {
     15 				"DEBUG": "1",
     16 			},
     17 			"cwd": "${workspaceFolder}"
     18 		}
     19 	]
     20 }