mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-29 05:33:49 +00:00
10 lines
323 B
Text
10 lines
323 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
which minio > /dev/null || (echo "installing minio..."; brew install minio/stable/minio)
|
||
|
mkdir -p .blob_store/the-extensions-bucket
|
||
|
mkdir -p .blob_store/zed-crash-reports
|
||
|
|
||
|
export MINIO_ROOT_USER=the-blob-store-access-key
|
||
|
export MINIO_ROOT_PASSWORD=the-blob-store-secret-key
|
||
|
minio server --quiet .blob_store
|