-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 1.24 KB
/
.env.example
File metadata and controls
37 lines (29 loc) · 1.24 KB
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
31
32
33
34
35
36
37
# Zoneless Development Configuration
# All values have sensible defaults — an empty .env file works for local dev.
#
# For production / self-hosting with Docker, see .env.production.example
# Port the dashboard is served on (also used to generate links).
# In Docker, this maps the container's port 80 to your host.
DASHBOARD_PORT=
# Optional full URL override for the dashboard.
# Only needed for custom domains — auto-derived from DASHBOARD_PORT if unset.
DASHBOARD_URL=
# MongoDB connection string.
# Leave empty for sensible defaults:
# Local dev (npm run dev): mongodb://localhost:27017/zoneless?replicaSet=rs0
# Docker (docker compose up): mongodb://mongodb:27017/zoneless?directConnection=true
MONGODB_URI=
# Port the API is served on.
API_PORT=
# 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 (default: true).
# Set to false to allow multiple platforms.
SINGLE_TENANT=
# Solana RPC endpoint
# e.g. https://api.devnet.solana.com or a Helius/QuickNode URL
SOLANA_RPC_URL=
# LIVEMODE controls Solana network: false = devnet (test), true = mainnet (real USDC)
LIVEMODE=