zed/script/bootstrap
2022-11-08 14:09:17 -08:00

14 lines
273 B
Bash
Executable File

#!/usr/bin/env bash
echo "installing foreman..."
which foreman > /dev/null || brew install foreman
echo "creating database..."
script/sqlx database create
echo "migrating database..."
(cd crates/collab && cargo run -- migrate)
echo "seeding database..."
script/seed-db