github.com/avenga/couper@v1.12.2/couper.code-workspace (about)

     1  {
     2  	"extensions": {
     3  		// See http://go.microsoft.com/fwlink/?LinkId=827846
     4    		// for the documentation about the extensions.json format
     5  		"recommendations": [
     6  			// Couper specific hcl auto-completion.
     7  			"AvengaGermanyGmbH.couper",
     8  		  ]
     9  	},
    10  	"folders": [
    11  		{
    12  			"path": "."
    13  		}
    14  	],
    15  	"settings": {},
    16  	"launch": {
    17  		"version": "0.2.0",
    18  		"configurations": [
    19  			{
    20  				"name": "Debug couper",
    21  				"type": "go",
    22  				"request": "launch",
    23  				"mode": "debug",
    24  				"program": "${workspaceFolder}/main.go",
    25  				"args": ["run", "-f", "./public/couper.hcl"]
    26  			},
    27  		]
    28  	}
    29  }