run-local-minio

1#!/bin/bash -e
2
3which minio > /dev/null || (echo "installing minio..."; brew install minio/stable/minio)
4mkdir -p .blob_store/the-extensions-bucket
5mkdir -p .blob_store/zed-crash-reports
6
7export MINIO_ROOT_USER=the-blob-store-access-key
8export MINIO_ROOT_PASSWORD=the-blob-store-secret-key
9exec minio server --quiet .blob_store