zed/script/bootstrap

21 lines
442 B
Text
Raw Normal View History

#!/usr/bin/env bash
echo "installing foreman..."
which foreman > /dev/null || brew install foreman
echo "installing minio..."
which minio > /dev/null || brew install minio/stable/minio
mkdir -p .blob_store/the-extensions-bucket
echo "creating database..."
script/sqlx database create
# echo "migrating database..."
# cargo run -p collab -- migrate
echo "seeding database..."
script/seed-db
# echo "Linux dependencies..."
# script/linux