Add vscode config again

This commit is contained in:
Simon Beck 2022-12-28 21:35:06 +01:00
parent 9c7497a8aa
commit 100fa024d9
1 changed files with 30 additions and 0 deletions

30
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,30 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"env": {
"KK_CONFIG_PATH": "tmp/",
"KK_KOPIA_CACHE_PATH": "cache/",
"AWS_ACCESS_KEY_ID": "minioadmin",
"AWS_SECRET_ACCESS_KEY": "minioadmin",
"KK_ENCRYPTION_PASSWORD": "asdf",
"KK_BUCKET": "kopia-k8s",
"KK_ENDPOINT": "localhost:9000",
"KK_KOPIA_PATH": "/usr/local/bin/kopia"
},
"args": [
"-d",
"operator",
"backup"
]
}
]
}