mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-04 06:34:26 +00:00
13 lines
254 B
Bash
Executable file
13 lines
254 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..."
|
|
script/sqlx migrate run
|
|
|
|
echo "seeding database..."
|
|
script/seed-db
|