Skip to content

Commit

Permalink
Update .devcontainer.json to fix vscode error warnings. No functional…
Browse files Browse the repository at this point in the history
… changes.

Signed-off-by: Dan Lipsitt <[email protected]>
  • Loading branch information
DanLipsitt committed May 29, 2024
1 parent 16a98a8 commit d2f18cb
Showing 1 changed file with 20 additions and 15 deletions.
35 changes: 20 additions & 15 deletions docker/everest-playground/.devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,31 @@
"MQTT_SERVER_ADDRESS": "mqtt-server",
"MQTT_SERVER_PORT": "1883"
},
"extensions": [
"ms-python.python",
"ms-vscode.cpptools",
"twxs.cmake",
"ms-vscode.cmake-tools"
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-vscode.cpptools",
"twxs.cmake",
"ms-vscode.cmake-tools"
],
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash",
"python.pythonPath": "/usr/bin/python3"
}
}
},
"postCreateCommand": "",
"remoteUser": "docker",
"runArgs": [
"--network=infranet_network"
],
"workspaceFolder": "/workspace/everest-cpp",
"workspaceMount": "source=${localWorkspaceFolder}/../../,target=/workspace,type=bind",
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash",
"python.pythonPath": "/usr/bin/python3"
}

}

0 comments on commit d2f18cb

Please sign in to comment.