-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdevcontainer.json
More file actions
49 lines (49 loc) · 1.87 KB
/
Copy pathdevcontainer.json
File metadata and controls
49 lines (49 loc) · 1.87 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
{
"name": "dbatools.library",
"dockerComposeFile": "docker-compose.yml",
"service": "devbox",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/copilot-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.powershell",
"dbatools.search",
"anthropic.claude-code",
"github.copilot",
"github.copilot-chat",
"humao.rest-client",
"redhat.vscode-yaml",
"chrissylemaire.vscode-theme-2024"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh",
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font', 'CaskaydiaCove NF', monospace",
"terminal.integrated.profiles.linux": {
"pwsh": {
"path": "/usr/bin/pwsh",
"icon": "terminal-powershell"
}
},
"powershell.powerShellAdditionalExePaths": {
"PowerShell": "/usr/bin/pwsh"
},
"powershell.powerShellDefaultVersion": "PowerShell",
"powershell.developer.editorServicesLogLevel": "Error",
"powershell.integratedConsole.suppressStartupBanner": true
}
}
},
"mounts": [
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.claude,target=/home/vscode/.claude,type=bind,consistency=cached"
],
"remoteEnv": {
"ANTHROPIC_API_KEY": "${localEnv:ANTHROPIC_API_KEY}",
"PATH": "/home/vscode/.local/bin:${containerEnv:PATH}"
},
"postStartCommand": "pwsh -noprofile /home/vscode/setup.ps1"
}