-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.devcontainer.json
More file actions
28 lines (28 loc) · 859 Bytes
/
.devcontainer.json
File metadata and controls
28 lines (28 loc) · 859 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
{
"name": "🪐 Modern Python Cheat Sheet",
"image": "python:3.12-bookworm",
"containerEnv": {
"PYTHONUNBUFFERED": "1",
"PYTHONBREAKPOINT": "ipdb.set_trace"
},
"onCreateCommand": "poetry config virtualenvs.create false && poetry install",
"features": {
"ghcr.io/ddahan/feature-starter/poetry:latest": {
"version": "1.8.4"
},
"ghcr.io/ddahan/feature-starter/custom_bashrc:latest": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter@prerelease",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"tamasfe.even-better-toml"
],
"settings": {}
}
}
}