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

18 lines
360 B
Bash
Raw Normal View History

#!/bin/bash
set -e
echo "Setting up local config file..."
node .devcontainer/createLocalConfig.js
2024-10-25 23:21:09 +00:00
# echo "Cleaning up any previous installs..."
# yarn clean:hard
2024-10-25 23:21:09 +00:00
# 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