-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.env.production.example
More file actions
30 lines (24 loc) · 1004 Bytes
/
.env.production.example
File metadata and controls
30 lines (24 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Zoneless Production Configuration
# Copy this file to .env.production and fill in the values.
#
# Start with:
# npm run prod
# Your public-facing URL (where the dashboard is accessed)
DASHBOARD_URL=https://pay.yourdomain.com
# MongoDB connection string.
# Leave empty to use the built-in containerized MongoDB (fine for small deployments).
# For production, use a managed service like MongoDB Atlas:
# mongodb+srv://user:pass@cluster.mongodb.net/zoneless?retryWrites=true&w=majority
MONGODB_URI=
# Secret key for signing JWTs and encrypting data.
# Generate one with: openssl rand -hex 64
# If left empty, one is auto-generated and stored in the database.
APP_SECRET=
# Single-tenant mode: only one platform can be created.
# Set to true for self-hosted deployments.
SINGLE_TENANT=true
# Solana RPC endpoint
# e.g. https://api.mainnet-beta.solana.com or a Helius/QuickNode URL
SOLANA_RPC_URL=
# LIVEMODE controls Solana network: true = mainnet (real USDC), false = devnet (test)
LIVEMODE=true