Skip to content

Commit ed1f294

Browse files
crazy4pi314lwasser
authored andcommitted
adding config
1 parent 98768cf commit ed1f294

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.devcontainer/devcontainer.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/miniconda
3+
{
4+
"name": "Miniconda (Python 3)",
5+
"image": "mcr.microsoft.com/devcontainers/miniconda:0-3",
6+
7+
"features": {
8+
"ghcr.io/devcontainers-contrib/features/hatch:2": {}
9+
},
10+
"customizations": {
11+
"vscode": {
12+
"extensions": [
13+
"njpwerner.autodocstring",
14+
"ms-python.python"
15+
],
16+
"settings": {
17+
"autoDocstring.docstringFormat": "numpy"
18+
}
19+
}
20+
}
21+
22+
// Features to add to the dev container. More info: https://containers.dev/features.
23+
// "features": {},
24+
25+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
26+
// "forwardPorts": [],
27+
28+
// Use 'postCreateCommand' to run commands after the container is created.
29+
// "postCreateCommand": "python --version",
30+
31+
32+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
33+
// "remoteUser": "root"
34+
}

0 commit comments

Comments
 (0)