-
Notifications
You must be signed in to change notification settings - Fork 6
/
devcontainer.json
35 lines (33 loc) · 1011 Bytes
/
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
33
34
35
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Reboot Devcontainer",
"image": "ghcr.io/reboot-dev/reboot-devcontainer",
"remoteUser": "dev",
"customizations": {
"vscode": {
// The following VS Code extensions are nice to have when developing on
// this Reboot application.
"extensions": [
// Python support.
"ms-python.python",
// Static type checking for Python.
"ms-python.mypy-type-checker",
// YAPF code formatter for Python.
"eeyore.yapf",
// Automatic import sorting for Python.
"ms-python.isort",
// Protocol buffer support.
"zxh404.vscode-proto3",
// Prettier code formatter.
"esbenp.prettier-vscode"
]
}
},
// Ports from the devcontainer made available on your local machine.
"forwardPorts": [
// The HTTP port exposed by default in examples.
3000,
// The gRPC backend port exposed by default in examples.
9991
]
}