run-local-minio
 1#!/usr/bin/env bash
 2
 3set -e
 4
 5if ! which minio > /dev/null; then
 6    echo "minio not found - run script/bootstrap to install it and do other setup"
 7    exit 1
 8fi
 9
10mkdir -p .blob_store/the-extensions-bucket
11mkdir -p .blob_store/zed-crash-reports
12
13export MINIO_ROOT_USER=the-blob-store-access-key
14export MINIO_ROOT_PASSWORD=the-blob-store-secret-key
15exec minio server --quiet .blob_store