diff --git a/.env.example b/.env.example index eda3722..1e95381 100644 --- a/.env.example +++ b/.env.example @@ -13,3 +13,6 @@ BLOSSOM_URL_DEFAULT=http://${PUBLIC_HOST}:8098 # Default nostr relays for NIP-53 live-event announcements (comma separated, # changeable at runtime in Settings) NOSTR_RELAYS=wss://relay.damus.io,wss://nos.lol,wss://relay.nostr.band + +# Cashu mint used to settle paid-episode purchases (changeable at runtime in Settings) +CASHU_MINT_URL_DEFAULT=https://mint.minibits.cash/Bitcoin diff --git a/docker-compose.yml b/docker-compose.yml index 3c15256..da0aa90 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,6 +20,7 @@ services: BLOSSOM_URL_DEFAULT: ${BLOSSOM_URL_DEFAULT:-http://localhost:8098} BLOSSOM_URL_INTERNAL: http://blossom:3000 NOSTR_RELAYS: ${NOSTR_RELAYS:-wss://relay.damus.io,wss://nos.lol,wss://relay.nostr.band} + CASHU_MINT_URL_DEFAULT: ${CASHU_MINT_URL_DEFAULT:-https://mint.minibits.cash/Bitcoin} volumes: - podsteadr-data:/data - mediamtx-recordings:/recordings:ro @@ -28,7 +29,7 @@ services: - blossom mediamtx: - image: bluenviron/mediamtx:1.19.2 + image: docker.io/bluenviron/mediamtx:1.19.2 container_name: podsteadr-mediamtx restart: unless-stopped ports: diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 177ddf7..16595c2 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -20,6 +20,7 @@ async function logout() {