Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-27T23:33:40.553Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

run-local-minio

16 lines · 385 B · text
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
16
Served at tenant.openagents/omega Member data and write actions are omitted.