- Add /storage/ and /backend/storage/ to .gitignore - Track meetup time helper, logo asset, and assorted frontend/backend fixes
25 lines
820 B
Plaintext
25 lines
820 B
Plaintext
# Admin pubkeys (comma-separated hex pubkeys)
|
|
ADMIN_PUBKEYS=npub1examplepubkey1,npub1examplepubkey2
|
|
|
|
# Nostr relays (comma-separated)
|
|
RELAYS=wss://relay.damus.io,wss://nos.lol,wss://relay.nostr.band
|
|
|
|
# Database (use an absolute `file:` URL in production, e.g. file:/home/bbe/BelgianBitcoinEmbassy/backend/prisma/prod.db)
|
|
DATABASE_URL="file:./dev.db"
|
|
|
|
# JWT
|
|
JWT_SECRET=change-me-to-a-random-secret-in-production
|
|
|
|
# Backend
|
|
BACKEND_PORT=4000
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# Media storage (path relative to repo root, or use an absolute path in production)
|
|
MEDIA_STORAGE_PATH=storage/media
|
|
|
|
# Frontend (public)
|
|
NEXT_PUBLIC_API_URL=http://localhost:4000/api
|
|
NEXT_PUBLIC_SITE_URL=https://belgianbitcoinembassy.org
|
|
NEXT_PUBLIC_SITE_TITLE=Belgian Bitcoin Embassy
|
|
NEXT_PUBLIC_SITE_TAGLINE=Belgium's Monthly Bitcoin Meetup
|