44f9928070
Co-authored-by: userAdityaa <aditya.chaudhary1558@gmail.com> Co-committed-by: userAdityaa <aditya.chaudhary1558@gmail.com>
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# Server
|
|
HOST=127.0.0.1
|
|
PORT=2892
|
|
ALLOW_ORIGINS= # Optional comma-separated allowed CORS origins; empty = permissive
|
|
|
|
# Auth
|
|
ADMINS= # Comma-separated hex pubkeys with admin access
|
|
|
|
# Database
|
|
DATABASE_URL=sqlite://data/caravel.db
|
|
|
|
# Robot identity (published as kind 0)
|
|
ROBOT_SECRET= # Nostr private key (hex)
|
|
ROBOT_NAME=
|
|
ROBOT_DESCRIPTION=
|
|
ROBOT_PICTURE=
|
|
ROBOT_OUTBOX_RELAYS=relay.damus.io,relay.primal.net,nos.lol
|
|
ROBOT_INDEXER_RELAYS=purplepag.es,relay.damus.io,indexer.coracle.social
|
|
ROBOT_MESSAGING_RELAYS=auth.nostr1.com,relay.keychat.io,relay.ditto.pub
|
|
|
|
# Zooid
|
|
ZOOID_API_URL=http://127.0.0.1:3334
|
|
ZOOID_API_SECRET=
|
|
RELAY_DOMAIN=spaces.coracle.social
|
|
LIVEKIT_URL=
|
|
LIVEKIT_API_KEY=
|
|
LIVEKIT_API_SECRET=
|
|
|
|
# Billing
|
|
NWC_URL= # Nostr Wallet Connect URL for generating Lightning invoices
|
|
STRIPE_SECRET_KEY= # Required Stripe API secret key (sk_...)
|
|
STRIPE_WEBHOOK_SECRET=whsec_test_00000000000000000000000000 # Webhook signing secret (use real value in production)
|