mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
2c834c24a3
Build media and live-kit in test-mode on non-MacOS (Related to https://github.com/zed-industries/zed/issues/5391 https://github.com/zed-industries/zed/issues/5395 https://github.com/zed-industries/zed/issues/5394) This makes it possible to build the media and live-kit crates on non-MacOS Release Notes: - N/A
17 lines
316 B
Bash
Executable File
17 lines
316 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
|
|
|
|
echo "Linux dependencies..."
|
|
script/linux
|