librespot/.devcontainer/devcontainer.json
Christian König 31e42879e2
Add devcontainer
Signed-off-by: Christian König <ckoenig@posteo.de>
2024-02-26 13:19:26 +00:00

25 lines
615 B
JSON

{
"name": "Librespot Devcontainer",
"dockerFile": "Dockerfile",
// Use 'postCreateCommand' to run commands after the container is created.
//"postCreateCommand": "",
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {
"dev.containers.copyGitConfig": true
},
"extensions": [
"eamodio.gitlens",
"github.vscode-github-actions",
"rust-lang.rust-analyzer"
]
}
},
"containerEnv": {
"GIT_EDITOR": "nano"
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}