-
Notifications
You must be signed in to change notification settings - Fork 1
/
devcontainer.json
32 lines (32 loc) · 1.06 KB
/
devcontainer.json
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
{
"name": "Advanced Trading Tool Development",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.9",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Enabled": true,
"editor.formatOnSave": true
},
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"ms-python.vscode-pylance",
"ms-azuretools.vscode-docker",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"visualstudioexptteam.vscodeintellicode"
],
"forwardPorts": [8888, 5000],
"postCreateCommand": "pip install -r requirements.txt",
"mounts": ["source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached"],
"remoteUser": "vscode",
"customizations": {
"vscode": {
"settings": {
"python.analysis.typeCheckingMode": "basic"
}
}
}
}