mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 20:41:59 +00:00
cd8ede542b
This PR fixes the bootstrap script, as we had some unintentional changes committed to it. Closes #8370. Release Notes: - N/A
17 lines
391 B
Bash
Executable file
17 lines
391 B
Bash
Executable file
#!/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
|