fix(devcontainer): use codewhale user/name/mount instead of pre-rebrand deepseek

This commit is contained in:
Hunter B
2026-06-09 23:30:53 -07:00
parent 26947bd407
commit 626032ad6b
+3 -3
View File
@@ -1,5 +1,5 @@
{ {
"name": "DeepSeek TUI", "name": "CodeWhale",
"dockerFile": "../Dockerfile", "dockerFile": "../Dockerfile",
"build": { "build": {
"args": { "args": {
@@ -23,12 +23,12 @@
"DEEPSEEK_API_KEY": "${localEnv:DEEPSEEK_API_KEY}" "DEEPSEEK_API_KEY": "${localEnv:DEEPSEEK_API_KEY}"
}, },
"mounts": [ "mounts": [
"source=${localEnv:HOME}/.deepseek,target=/home/deepseek/.deepseek,type=bind,consistency=cached" "source=${localEnv:HOME}/.codewhale,target=/home/codewhale/.codewhale,type=bind,consistency=cached"
], ],
"features": { "features": {
"ghcr.io/devcontainers/features/rust:1": {}, "ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/git:1": {} "ghcr.io/devcontainers/features/git:1": {}
}, },
"postCreateCommand": "cargo build", "postCreateCommand": "cargo build",
"remoteUser": "deepseek" "remoteUser": "codewhale"
} }