We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7162d56 + 86e6236 commit 365bd5dCopy full SHA for 365bd5d
.devcontainer/devcontainer.json
@@ -9,6 +9,7 @@
9
"installGitLFS": true,
10
"installGithubCli": true
11
},
12
+ "ghcr.io/devcontainers/features/github-cli:1": { },
13
"ghcr.io/devcontainers/features/node:1": {
14
"version": "18",
15
"nodeGypDependencies": true
.devcontainer/setup.sh
@@ -70,3 +70,9 @@ if [ -d "/workspaces/gitpodflix-demo/backend/catalog" ]; then
70
fi
71
72
echo "✅ Setup completed successfully!"
73
+
74
+if [ -n "$GH_CLI_TOKEN" ]; then
75
+ gh auth login --with-token <<< "$GH_CLI_TOKEN"
76
+else
77
+ echo "GH_CLI_TOKEN not set, skipping authentication"
78
+fi
0 commit comments