-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 908 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# .env.example
# PostgreSQL connection string for Prisma
# Example: postgres://username:password@localhost:5432/stellar_bounty
DATABASE_URL=postgresql://username:password@localhost:5432/stellar_bounty
# SEP-10 Wallet Authentication
# Server signing keypair for issuing SEP-10 challenge transactions.
# Generate with: stellar keys generate --network testnet
# Required in production. Defaults to a deterministic test keypair in development.
SERVER_SIGNING_SECRET=SXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# HMAC secret for signing issued JWTs.
# If not set, derived from SERVER_SIGNING_SECRET. Set explicitly in production.
JWT_SECRET=replace-with-a-long-random-secret-string
# Home domain used in SEP-10 ManageData operation keys (e.g. your-domain.com)
HOME_DOMAIN=stellar-bounty-board.local
# Web auth domain (defaults to HOME_DOMAIN when not set)
# WEB_AUTH_DOMAIN=auth.your-domain.com