Skip to content

Commit 614e621

Browse files
robtaylorclaude
andcommitted
feat: Disable Copilot, increase terminal font, disable port forwarding
Changes to devcontainer.json: - Disabled GitHub Copilot (github.copilot.enable: false) - Disabled inline suggestions (github.copilot.inlineSuggest.enable: false) - Disabled chat command center (chat.commandCenter.enabled: false) - Increased terminal font size to 14 (from default 12) - Commented out automatic port forwarding (8000, 8080, 3000) Users can still manually forward ports if needed via VS Code UI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e855d1c commit 614e621

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,20 @@
1919
"*.py": "python"
2020
},
2121
"terminal.integrated.defaultProfile.linux": "bash",
22-
"remote.autoForwardPorts": false
22+
"terminal.integrated.fontSize": 14,
23+
"remote.autoForwardPorts": false,
24+
"github.copilot.enable": false,
25+
"github.copilot.inlineSuggest.enable": false,
26+
"chat.commandCenter.enabled": false
2327
},
2428
"extensions": [
2529
"ms-python.python"
2630
]
2731
}
2832
},
2933

30-
// Use 'forwardPorts' to expose ports locally
31-
"forwardPorts": [8000, 8080, 3000],
34+
// Port forwarding disabled - users can manually forward ports if needed
35+
// "forwardPorts": [8000, 8080, 3000],
3236

3337
// Run during prebuild - installs Python dependencies (cached!)
3438
"onCreateCommand": "bash .devcontainer/install-deps.sh",

0 commit comments

Comments
 (0)