Skip to content

Commit c72826b

Browse files
authored
Merge pull request #117 from blooop/feature/add-devpod-tasks
Add devpod dependency and dev tasks
2 parents f3d3149 + 79cb50f commit c72826b

3 files changed

Lines changed: 58 additions & 35 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@
3333
"CLAUDE_CONFIG_DIR": "/home/vscode/.claude",
3434
"XDG_CONFIG_HOME": "/home/vscode/.config",
3535
"XDG_CACHE_HOME": "/home/vscode/.cache",
36-
"XDG_DATA_HOME": "/home/vscode/.local/share"
36+
"XDG_DATA_HOME": "/home/vscode/.local/share",
37+
"SSH_AUTH_SOCK": "/ssh-agent"
3738
},
3839
"mounts": [
3940
"source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume",
4041
"source=${localEnv:HOME}/.ssh/known_hosts,target=/home/vscode/.ssh/known_hosts,type=bind,ro",
41-
"source=${localEnv:HOME}/.ssh/config,target=/home/vscode/.ssh/config,type=bind,ro"
42+
"source=${localEnv:HOME}/.ssh/config,target=/home/vscode/.ssh/config,type=bind,ro",
43+
"source=${localEnv:SSH_AUTH_SOCK},target=/ssh-agent,type=bind"
4244
],
4345
"postCreateCommand": "sudo chown vscode .pixi && pixi install"
4446
}

0 commit comments

Comments
 (0)