summaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..6b0dac3
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,28 @@
+{
+ "name": "LSP Dev Container",
+ "build": {
+ "dockerfile": "./Dockerfile",
+ "context": ".."
+ },
+ "features": {
+ "ghcr.io/devcontainers/features/powershell:1": {
+ "version": "latest"
+ },
+ "ghcr.io/devcontainers/features/dotnet:1": {
+ "version": "latest"
+ }
+ },
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "esbenp.prettier-vscode",
+ "ms-python.python",
+ "ms-python.vscode-pylance",
+ "ms-python.black-formatter",
+ "ms-python.isort"
+ ]
+ }
+ },
+ "onCreateCommand": "bash scripts/onCreateCommand.sh",
+ "postCreateCommand": "bash scripts/postCreateCommand.sh"
+} \ No newline at end of file