mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
400fb12f7e
Fix initialization of minio to happen on service start instead of bootstrap, don't log errors if extensions are empty or if clickhouse is disabled Release Notes: - N/A
14 lines
261 B
Bash
Executable File
14 lines
261 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..."
|
|
cargo run -p collab -- migrate
|
|
|
|
echo "seeding database..."
|
|
script/seed-db
|