#!/usr/bin/env bash

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
  echo "Linux dependencies..."
  script/linux
else
  echo "installing foreman..."
  which foreman > /dev/null || brew install foreman
fi

echo "creating database..."
script/sqlx database create
