-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathdevcontainer.json
More file actions
21 lines (21 loc) · 625 Bytes
/
devcontainer.json
File metadata and controls
21 lines (21 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "python-docs-ko",
"image": "mcr.microsoft.com/devcontainers/python:3.13",
"postCreateCommand": "pip install --user -e .pdk; sudo chown $(whoami) /workspaces; pdk init",
"containerEnv": {
"PDK_BRANCH": "3.13",
"PDK_REVISION": "db7ad1c89f8b8f0319ec2f3a20f2f3c226a406ed"
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"mrorz.language-gettext",
"charliermarsh.ruff",
"donjayamanne.githistory"
]
}
}
}