-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdevcontainer.json
More file actions
executable file
·41 lines (41 loc) · 1.54 KB
/
devcontainer.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"image": "mcr.microsoft.com/devcontainers/python:1-3.13-bookworm",
// Configure tool-specific properties.
"features": {
"ghcr.io/va-h/devcontainers-features/uv:1": { "version": "0.8.17" }
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "${containerWorkspaceFolder}/.venv/bin/python",
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers",
"vscode-icons-team.vscode-icons",
"wayou.vscode-todo-highlight",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"visualstudioexptteam.vscodeintellicode",
"richie5um2.vscode-sort-json"
]
},
"jetbrains": {
"plugins": ["com.koxudaxi.pydantic", "com.koxudaxi.ruff"]
}
},
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/mdio-python,type=bind",
"workspaceFolder": "/workspaces/mdio-python",
// This installs the MDIO dev environment in the container. Put any customizations there.
"postCreateCommand": "bash .devcontainer/post-create.sh",
// Forward 8787 to enable us to view the dask dashboard
"forwardPorts": [8787]
// Add any mounts you want to use here.
//"mounts": [ "source=${localWorkspaceFolder}/../DATA/,target=/DATA/,type=bind,consistency=cached" ]
}