mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 13:19:04 +08:00
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
{
|
|
"name": "rustdesk",
|
|
"build": {
|
|
"dockerfile": "./Dockerfile",
|
|
"context": "."
|
|
},
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/vscode/rustdesk,type=bind,consistency=cache",
|
|
"workspaceFolder": "/home/vscode/rustdesk",
|
|
"postStartCommand": ".devcontainer/build.sh",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/java:1": {},
|
|
"ghcr.io/akhildevelops/devcontainer-features/android-cli:latest": {
|
|
"PACKAGES": "platform-tools,ndk;22.1.7171670"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"vadimcn.vscode-lldb",
|
|
"mutantdino.resourcemonitor",
|
|
"rust-lang.rust-analyzer",
|
|
"tamasfe.even-better-toml",
|
|
"serayuzgur.crates",
|
|
"mhutchie.git-graph",
|
|
"eamodio.gitlens"
|
|
],
|
|
"settings": {
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |