-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.devcontainer.json
More file actions
36 lines (36 loc) · 1.21 KB
/
.devcontainer.json
File metadata and controls
36 lines (36 loc) · 1.21 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
{
"name": "dfanalyzer-devcontainer",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"Tyriar.sort-lines",
"WakaTime.vscode-wakatime",
"charliermarsh.ruff",
"foxundermoon.shell-format",
"mesonbuild.mesonbuild",
"ms-azuretools.vscode-containers",
"ms-python.debugpy",
"ms-python.python",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.vscode-jupyter-cell-tags",
"ms-vscode.cpptools-extension-pack",
"ms-vscode-remote.remote-containers",
"redhat.vscode-yaml",
"tamasfe.even-better-toml",
"vscode-icons-team.vscode-icons"
]
}
},
"postCreateCommand": "ulimit -c unlimited && git config --global core.autocrlf input",
"remoteEnv": {
"OMPI_ALLOW_RUN_AS_ROOT": "1",
"OMPI_ALLOW_RUN_AS_ROOT_CONFIRM": "1",
"PYTHONPATH": "${containerWorkspaceFolder}"
}
}