This repository was archived by the owner on Mar 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
54 lines (54 loc) · 1.85 KB
/
devcontainer.json
File metadata and controls
54 lines (54 loc) · 1.85 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Python Dev (Rhiza)",
"image": "mcr.microsoft.com/devcontainers/python:3.14",
"hostRequirements": {
"cpus": 4
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/copilot-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": false
}
},
"mounts": [
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached"
],
"containerEnv": {
"INSTALL_DIR": "/home/vscode/.local/bin"
},
"forwardPorts": [8080, 2718],
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": ["."],
"python.terminal.activateEnvInCurrentTerminal": true,
"marimo.pythonPath": ".venv/bin/python",
"marimo.marimoPath": ".venv/bin/marimo"
},
"extensions": [
// Python Development
"ms-python.python",
"ms-python.vscode-pylance",
// Marimo/Notebooks
"marimo-team.vscode-marimo",
"marimo-ai.marimo-vscode",
// Linting and Formatting
"charliermarsh.ruff",
"tamasfe.even-better-toml",
// Build Tools
"ms-vscode.makefile-tools",
// AI Assistance
"github.copilot-chat",
"github.copilot",
"anthropic.claude-code"
]
}
},
"onCreateCommand": ".devcontainer/bootstrap.sh",
"remoteUser": "vscode"
}