forked from switchcollab/Switch-Bots-Python-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
25 lines (25 loc) · 736 Bytes
/
devcontainer.json
File metadata and controls
25 lines (25 loc) · 736 Bytes
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
// 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": "Python wrapper",
// The order of the files is important since later files override previous ones
"dockerComposeFile": [
"./docker-compose.yml"
],
"service": "switch_python_lib",
"workspaceFolder": "/workspace",
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"ms-azuretools.vscode-docker",
"rangav.vscode-thunder-client",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.isort",
"donjayamanne.python-environment-manager"
]
}
}
}