Skip to content

Commit

Permalink
(misc) added devcontainer.json specification
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Feb 29, 2024
1 parent ea3a649 commit 23e5327
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"build": { "dockerfile": "./Dockerfile" },
"customizations": {
"codespaces": {
"openFiles": [
"examples/README.md"
]
},
"vscode": {
"extensions": [
"nimsaem.nimvscode",
"ms-python.python",
"ms-toolsai.jupyter",
"mechatroner.rainbow-csv",
"mhutchie.git-graph"
],
"settings": {
"python.defaultInterpreterPath": "/opt/conda/bin/python"
}
}
},
"hostRequirements": {
"cpus": 4,
"memory": "16gb",
"storage": "16gb"
}
}

0 comments on commit 23e5327

Please sign in to comment.