Skip to content

Commit

Permalink
Update devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
bram-vdberg committed Jul 12, 2024
1 parent 04d507e commit 2c6a124
Showing 1 changed file with 29 additions and 6 deletions.
35 changes: 29 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
{
"name": "Token Imbalances",
"build": {
"dockerfile": "../Dockerfile",
"context": ".."
},
"postCreateCommand": "python -m pip install -r requirements.txt"
"name": "Token Imbalances",
"build": {
"dockerfile": "../Dockerfile",
"context": ".."
},
"postCreateCommand": "python -m pip install -r requirements.txt",

"mounts": [
"source=${localEnv:HOME}/.ssh,target=/root/.ssh,type=bind,consistency=cached"
],

"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.mypy-type-checker"
],
"settings": {
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.formatting.provider": "black",
}
}
}
}

0 comments on commit 2c6a124

Please sign in to comment.