-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy path.env.example
More file actions
28 lines (25 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
28 lines (25 loc) · 1.09 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
# Shared reference template. Placeholder values only — never commit real secrets.
#
# Copy the environment-specific template you need and replace every placeholder:
# cp .env.testnet.example .env.testnet
# cp .env.staging.example .env.staging
# cp .env.mainnet.example .env.mainnet
#
# The copies (.env, .env.testnet, .env.staging, .env.mainnet, any .env.*) are
# git-ignored; only *.example templates are tracked.
#
# Use package scripts such as `npm run dev:testnet` or `npm run build:staging` to load them.
APP_ENV=testnet
PORT=3000
ADMIN_SECRET=replace-with-a-long-random-secret
# Shared mint rate-limit state (required). In-memory Maps are not used in production
# because restarts and multiple instances would silently reset or multiply the limit.
REDIS_URL=redis://127.0.0.1:6379
MAX_MINTS=3
MINT_WINDOW_MS=60000
STELLAR_NETWORK=testnet
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
NETWORK_PASSPHRASE=Test SDF Network ; September 2015
HUNTY_CORE_ID=replace-with-hunty-core-contract-id
REWARD_MANAGER_ID=replace-with-reward-manager-contract-id
NFT_REWARD_ID=replace-with-nft-reward-contract-id