apollo-backend/script/bootstrap

33 lines
651 B
Text
Raw Normal View History

2021-05-10 00:51:15 +00:00
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
brew bundle check >/dev/null 2>&1 || {
echo "==> Installing Homebrew dependencies..."
brew bundle
}
[ -d "tmp/postgresql" ] || {
echo "===> Setting up database..."
initdb -D tmp/postgresql -U apollo
2021-07-05 23:10:09 +00:00
postgres -D tmp/postgresql &
echo "===> Waiting for Postgres to finish starting up..."
while ! nc -z localhost 5432; do
sleep 0.1 # wait for 1/10 of the second before check again
done
createdb apollo -U apollo
script/migrate
kill -INT `head -n1 tmp/postgresql/postmaster.pid`
2021-05-10 00:51:15 +00:00
}
go mod verify >/dev/null 2>&1 || {
echo "==> Installing Go dependencies..."
go mod download
}