mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
18 lines
352 B
Bash
18 lines
352 B
Bash
|
#!/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
|