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