Skip to repository content16 lines · 385 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T23:33:40.553Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
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
16