Skip to content

Commit

Permalink
add dev container for extensible development areas
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Nov 9, 2024
1 parent 4c3ffef commit 15b1381
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Python 3",
"image": "python:3.11-bookworm",
"features": {
"ghcr.io/devcontainers-extra/features/ruff:1": {
"version": "latest"
},
"ghcr.io/devcontainers-extra/features/npm-package": {
"package": "pyright",
"version": "latest"
},
"ghcr.io/devcontainers-extra/features/poetry:2": {
"version": "latest"
}
},
"postCreateCommand": "bash ./.devcontainer/post-install.sh",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff"
]
}
}
}
1 change: 1 addition & 0 deletions .devcontainer/post-install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
poetry install

0 comments on commit 15b1381

Please sign in to comment.