Skip to content

Commit

Permalink
fix: add Python to the devcontainer (#77)
Browse files Browse the repository at this point in the history
Update the devcontainer to include Python so that it can be
used to work on the examples.
  • Loading branch information
patheard authored Sep 27, 2024
1 parent 37be258 commit 3095fe8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,22 @@
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.5.1"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12",
"installTools": false
}
},
"customizations": {
"vscode": {
"extensions": ["github.copilot", "github.vscode-github-actions"]
"extensions": [
"github.copilot",
"github.vscode-github-actions",
"biomejs.biome",
"vitest.explorer",
"ms-python.python",
"ms-python.black-formatter"
]
}
},
"appPort": [3001],
Expand Down

0 comments on commit 3095fe8

Please sign in to comment.