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