microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-copilot-code-review

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/scripts/post-create.sh

14lines · modecode

1#!/usr/bin/env bash
2#
3# post-create.sh
4# Install NPM dependencies for HVE Core development container
5
6set -euo pipefail
7
8main() {
9 echo "Installing NPM dependencies..."
10 npm install
11 echo "NPM dependencies installed successfully"
12}
13
14main "$@"