mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 10:40:54 +00:00
14 lines
254 B
Text
14 lines
254 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "installing foreman..."
|
||
|
which foreman > /dev/null || brew install foreman
|
||
|
|
||
|
echo "creating database..."
|
||
|
script/sqlx database create
|
||
|
|
||
|
echo "migrating database..."
|
||
|
script/sqlx migrate run
|
||
|
|
||
|
echo "seeding database..."
|
||
|
script/seed-db
|