mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
14 lines
273 B
Bash
Executable File
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
|