FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nfft/.devcontainer/devcontainer.json at develop · NFFT/nfft · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NFFT
/
nfft
Public
Notifications
You must be signed in to change notification settings
Fork
50
Star
187
Code
Issues
16
Pull requests
6
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
nfft
/
.devcontainer
/
devcontainer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (55 loc) · 1.99 KB
Breadcrumbs
nfft
/
.devcontainer
/
devcontainer.json
Copy path
File metadata and controls
55 lines (55 loc) · 1.99 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
55
{
"name"
:
"
NFFT Development Container
"
,
"build"
: {
"dockerfile"
:
"
Dockerfile
"
,
"context"
:
"
..
"
},
"customizations"
: {
"vscode"
: {
"extensions"
: [
"
ms-vscode.cpptools
"
,
"
ms-vscode.cmake-tools
"
,
"
ms-python.python
"
,
"
ms-vscode.makefile-tools
"
,
"
llvm-vs-code-extensions.vscode-clangd
"
],
"settings"
: {
"C_Cpp.default.configurationProvider"
:
"
ms-vscode.cmake-tools
"
,
"cmake.configureOnOpen"
:
true
,
"python.defaultInterpreterPath"
:
"
/home/vscode/.local/bin/python
"
}
}
},
"features"
: {
"ghcr.io/devcontainers/features/common-utils:2.5.9"
: {
"configureZshAsDefaultShell"
:
true
},
"ghcr.io/devcontainers/features/node:1"
: {
"version"
:
"
24
"
},
"ghcr.io/devcontainers/features/git:1.3.8"
: {
"version"
:
"
os-provided
"
},
"ghcr.io/devcontainers/features/github-cli:1.1.0"
: {},
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0.5"
: {}
},
//
Node must install before claude-code so the latter reuses it instead of
//
installing its own runtime.
"overrideFeatureInstallOrder"
: [
"
ghcr.io/devcontainers/features/common-utils
"
,
"
ghcr.io/devcontainers/features/node
"
,
"
ghcr.io/anthropics/devcontainer-features/claude-code
"
],
"containerEnv"
: {
//
Keeps Claude Code's settings, plugins, and its login/onboarding state
//
(normally ~/.claude.json, outside the volume) on the mounted volume to
//
preserve across container rebuilds.
"CLAUDE_CONFIG_DIR"
:
"
/home/vscode/.claude
"
},
"postCreateCommand"
:
"
bash .devcontainer/setup-claude-extensions.sh
"
,
"remoteUser"
:
"
vscode
"
,
"containerUser"
:
"
vscode
"
,
"mounts"
: [
"
source=claude-code-config-${devcontainerId},target=/home/vscode/.claude,type=volume
"
]
}
Back
|
FazBrowse Home
|
New Git URL