mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
20 lines
353 B
Bash
Executable file
20 lines
353 B
Bash
Executable file
#!/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
|
|
}
|
|
|
|
go mod verify >/dev/null 2>&1 || {
|
|
echo "==> Installing Go dependencies..."
|
|
go mod download
|
|
}
|