-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevcontainer.json
More file actions
39 lines (39 loc) · 1.08 KB
/
devcontainer.json
File metadata and controls
39 lines (39 loc) · 1.08 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
37
38
39
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"postCreateCommand": "pip install -e .[development,docs,casts]",
"customizations": {
"vscode": {
"extensions": [
"lextudio.restructuredtext",
"alexkrechik.cucumberautocomplete",
"ms-python.python",
"ms-python.pylint",
"ms-python.isort",
"ms-python.black-formatter",
"ms-python.debugpy",
"mhutchie.git-graph",
"tamasfe.even-better-toml",
"trond-snekvik.simple-rst",
"jebbs.plantuml",
"jimasp.behave-vsc"
],
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
}
}
},
"workspaceFolder": "/workspaces/dfetch",
"remoteUser": "dev"
}