27 lines
735 B
Bash
27 lines
735 B
Bash
# Server
|
|
HOST=127.0.0.1
|
|
PORT=3000
|
|
|
|
# Database
|
|
DATABASE_URL=sqlite://data/caravel.db
|
|
|
|
# Nostr
|
|
PLATFORM_ADMIN_PUBKEYS= # Comma-separated hex pubkeys with super admin access
|
|
PLATFORM_SECRET= # Nostr private key (hex) used to send NIP-17 DMs and sign events
|
|
|
|
# Zooid
|
|
ZOOID_API_URL=http://127.0.0.1:8032
|
|
RELAY_DOMAIN=spaces.coracle.social
|
|
|
|
# Billing
|
|
NWC_URL= # Nostr Wallet Connect URL for generating Lightning invoices
|
|
|
|
# Indexer
|
|
NOSTR_INDEXER_RELAYS=wss://purplepag.es/,wss://relay.damus.io/,wss://relay.nostr.band/
|
|
|
|
# Platform identity (published as kind 0)
|
|
PLATFORM_NAME=
|
|
PLATFORM_DESCRIPTION=
|
|
PLATFORM_PICTURE=
|
|
PLATFORM_MESSAGING_RELAYS= # Comma-separated relay URLs published in kind 10050
|