Skip to content

Commit e033166

Browse files
Add DevContainer configuration (#131)
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: William Easton <strawgate@users.noreply.github.com>
1 parent 70b307d commit e033166

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "py-key-value",
3+
"image": "ghcr.io/astral-sh/uv:python3.10-bookworm",
4+
"features": {
5+
"ghcr.io/devcontainers/features/node:1": {
6+
"version": "lts"
7+
}
8+
},
9+
"customizations": {
10+
"vscode": {
11+
"extensions": [
12+
"ms-python.python",
13+
"ms-python.vscode-pylance",
14+
"charliermarsh.ruff",
15+
"DavidAnson.vscode-markdownlint"
16+
],
17+
"settings": {
18+
"python.defaultInterpreterPath": "/usr/local/bin/python",
19+
"python.testing.pytestEnabled": true,
20+
"python.testing.unittestEnabled": false,
21+
"python.testing.pytestArgs": [
22+
"key-value",
23+
"--import-mode=importlib",
24+
"-vv"
25+
]
26+
}
27+
}
28+
},
29+
"postCreateCommand": "make sync",
30+
"remoteUser": "root"
31+
}

0 commit comments

Comments
 (0)