Skip to content

Commit 1da6b6f

Browse files
authoredNov 6, 2024··
Updated for / MSIgnite Lab 401 (#199)
* refactor 1 / organize into tabs * refactor / v2 docs * initial lab401-skillable-panel * fox / skillable instructions * fix / skillable instructions * forking sample to my profile * forking sample to my profile * refactor / nav sections * fix / workshop docs reorganized * update devcontainer.json * fix / AIServices
1 parent a6a742e commit 1da6b6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2002
-1205
lines changed
 

‎.devcontainer/devcontainer.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
},
1414
"ghcr.io/devcontainers/features/git:1": {},
1515
"ghcr.io/azure/azure-dev/azd:latest": {},
16-
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
16+
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
17+
"ghcr.io/devcontainers/features/github-cli:1": {},
18+
"ghcr.io/devcontainers/features/node:1": {
19+
"version": "22.8.0"
20+
}
1721
},
1822
"customizations": {
1923
"vscode": {
@@ -26,5 +30,9 @@
2630
"rogalmic.bash-debug"
2731
]
2832
}
29-
}
33+
},
34+
"postCreateCommand": "bash .devcontainer/setup.sh",
35+
"forwardPorts": [
36+
8000
37+
]
3038
}

‎.devcontainer/setup.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
# Exit immediately if a command exits with a non-zero status
4+
set -e
5+
6+
# Install NPM modules for Contoso Web UI
7+
echo "Installing NPM modules for Contoso Web UI"
8+
# pushd ./src/web
9+
# npm install
10+
# npx next telemetry disable
11+
# popd

0 commit comments

Comments
 (0)
Please sign in to comment.