-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 768 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
29 lines (29 loc) · 768 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
{
"name": "Python & Data Analysis Course",
"image": "mcr.microsoft.com/devcontainers/javascript-node:20",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12"
}
},
"postCreateCommand": "npm install && curl -LsSf https://astral.sh/uv/install.sh | sh && (cd examples/ai-agent && $HOME/.local/bin/uv sync)",
"forwardPorts": [3000],
"portsAttributes": {
"3000": {
"label": "Docusaurus dev server",
"onAutoForward": "openPreview"
}
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-python.python"
]
}
},
"remoteEnv": {
"PATH": "${containerEnv:HOME}/.local/bin:${containerEnv:PATH}"
}
}