microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
17a85daf2f170d57880c18936fe38b190d2f5b2e

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/scripts/post-create.sh

19lines · modecode

1#!/usr/bin/env bash
2# Copyright (c) Microsoft Corporation.
3# SPDX-License-Identifier: MIT
4#
5# post-create.sh
6# Install NPM dependencies for HVE Core development container
7
8set -euo pipefail
9
10main() {
11 echo "Creating logs directory..."
12 mkdir -p logs
13
14 echo "Installing NPM dependencies..."
15 npm ci
16 echo "NPM dependencies installed successfully"
17}
18
19main "$@"
20