0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/.devcontainer/onCreateCommand.sh

18 lines
352 B
Bash
Raw Normal View History

#!/bin/bash
set -e
echo "Setting up local config file..."
node .devcontainer/createLocalConfig.js
echo "Cleaning up any previous installs..."
yarn clean:hard
echo "Installing dependencies..."
yarn install
echo "Updating git submodules..."
git submodule update --init --recursive
echo "Building typescript packages..."
yarn nx run-many -t build:ts