feat(devcontainer): add Claude Code extension and VS Code marketplace URLs
- Add anthropic.claude-code extension to default extensions list - Allow VS Code marketplace URLs in firewall configuration: - marketplace.visualstudio.com (marketplace API) - vscode.blob.core.windows.net (extension downloads) - update.code.visualstudio.com (VS Code updates/metadata) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
55988caadf
commit
07e13937b2
2 changed files with 5 additions and 1 deletions
|
|
@ -16,6 +16,7 @@
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
|
"anthropic.claude-code",
|
||||||
"dbaeumer.vscode-eslint",
|
"dbaeumer.vscode-eslint",
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"eamodio.gitlens"
|
"eamodio.gitlens"
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,10 @@ for domain in \
|
||||||
"api.anthropic.com" \
|
"api.anthropic.com" \
|
||||||
"sentry.io" \
|
"sentry.io" \
|
||||||
"statsig.anthropic.com" \
|
"statsig.anthropic.com" \
|
||||||
"statsig.com"; do
|
"statsig.com" \
|
||||||
|
"marketplace.visualstudio.com" \
|
||||||
|
"vscode.blob.core.windows.net" \
|
||||||
|
"update.code.visualstudio.com"; do
|
||||||
echo "Resolving $domain..."
|
echo "Resolving $domain..."
|
||||||
ips=$(dig +noall +answer A "$domain" | awk '$4 == "A" {print $5}')
|
ips=$(dig +noall +answer A "$domain" | awk '$4 == "A" {print $5}')
|
||||||
if [ -z "$ips" ]; then
|
if [ -z "$ips" ]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue