mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 22:34:13 +00:00
250df707bf
Move away from columns of icons towards the "changed" info dot we used for files. Secondary actions for chat/notes still show up (if you're lucky) on hover. Co-Authored-By: Marshall <marshall@zed.dev> Release Notes: - Improved design of collab panel --------- Co-authored-by: Marshall <marshall@zed.dev> Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
20 lines
442 B
Bash
Executable file
20 lines
442 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
|
|
|
|
# echo "Linux dependencies..."
|
|
# script/linux
|