52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.234.0/containers/docker-from-docker-compose
|
|
{
|
|
"name": "beteran-api-kgon-server-service",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "app",
|
|
"workspaceFolder": "/workspace",
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
// Configure properties specific to VS Code.
|
|
"vscode": {
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
"lldb.verboseLogging": true,
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
// VS Code don't watch files under ./target
|
|
"files.watcherExclude": {
|
|
"**/.git/objects/**": true,
|
|
"**/.git/subtree-cache/**": true,
|
|
"**/target/**": true
|
|
},
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.formatOnSave": true
|
|
},
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"donjayamanne.githistory",
|
|
"eamodio.gitlens",
|
|
"mhutchie.git-graph",
|
|
"ms-azuretools.vscode-docker",
|
|
"mutantdino.resourcemonitor",
|
|
"rust-lang.rust-analyzer",
|
|
"serayuzgur.crates",
|
|
"tamasfe.even-better-toml",
|
|
"vadimcn.vscode-lldb"
|
|
]
|
|
}
|
|
},
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "docker --version",
|
|
"postCreateCommand": "bash ./.devcontainer/scripts/postCreateCommand.sh",
|
|
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "vscode",
|
|
"features": {
|
|
"git": "latest",
|
|
"rust": "latest"
|
|
}
|
|
} |