-
-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 743 Bytes
/
devcontainer.json
File metadata and controls
30 lines (30 loc) · 743 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
26
27
28
29
30
{
"name": "ReactPy",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
// "remoteUser": "vscode",
// "containerEnv": {
// "BUN_INSTALL": "/home/vscode/.bun"
// },
// "remoteEnv": {
// "BUN_INSTALL": "/home/vscode/.bun",
// "PATH": "/home/vscode/.bun/bin:${containerEnv:PATH}"
// },
"postCreateCommand": "bash .devcontainer/post-create.sh",
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.terminal.activateEnvironment": false
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"ms-playwright.playwright"
]
}
}
}