mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
# Chain Configuration
|
|
NEXT_PUBLIC_CHAIN_ID=sonrtest_1-1
|
|
NEXT_PUBLIC_CHAIN_ENDPOINT=http://localhost:26657
|
|
NEXT_PUBLIC_RPC_ENDPOINT=http://localhost:1317
|
|
NEXT_PUBLIC_GRPC_ENDPOINT=http://localhost:9090
|
|
NEXT_PUBLIC_WS_ENDPOINT=ws://localhost:26657/websocket
|
|
|
|
# Authentication
|
|
NEXT_PUBLIC_AUTH_URL=http://localhost:3001
|
|
NEXT_PUBLIC_AUTH_DOMAIN=localhost
|
|
|
|
# API Configuration
|
|
NEXT_PUBLIC_API_URL=http://localhost:3000
|
|
NEXT_PUBLIC_API_VERSION=v1
|
|
|
|
# Service Configuration
|
|
NEXT_PUBLIC_SERVICE_DOMAIN=api.example.com
|
|
NEXT_PUBLIC_SERVICE_NAME=Sonr Dashboard
|
|
|
|
# Feature Flags
|
|
NEXT_PUBLIC_ENABLE_ANALYTICS=true
|
|
NEXT_PUBLIC_ENABLE_REALTIME=true
|
|
NEXT_PUBLIC_ENABLE_MOCK_DATA=false
|
|
|
|
# Development Settings
|
|
NEXT_PUBLIC_DEBUG=false
|
|
NEXT_PUBLIC_LOG_LEVEL=info
|
|
|
|
# Domain Verification
|
|
NEXT_PUBLIC_DNS_CHECK_INTERVAL=5000
|
|
NEXT_PUBLIC_DNS_MAX_ATTEMPTS=60
|
|
NEXT_PUBLIC_VERIFICATION_PREFIX=sonr-verification
|
|
|
|
# Rate Limiting
|
|
NEXT_PUBLIC_MAX_REQUESTS_PER_MINUTE=100
|
|
NEXT_PUBLIC_MAX_REQUESTS_PER_HOUR=1000
|
|
|
|
# Monitoring
|
|
NEXT_PUBLIC_SENTRY_DSN=
|
|
NEXT_PUBLIC_GA_TRACKING_ID=
|
|
|
|
# External Services
|
|
NEXT_PUBLIC_IPFS_GATEWAY=https://ipfs.io/ipfs/
|
|
NEXT_PUBLIC_IPFS_API=http://localhost:5001
|
|
|
|
# Testnet Configuration
|
|
NEXT_PUBLIC_FAUCET_URL=https://faucet.sonr.io
|
|
NEXT_PUBLIC_EXPLORER_URL=https://explorer.sonr.io
|
|
|
|
# WebAuthn Configuration
|
|
NEXT_PUBLIC_WEBAUTHN_RP_NAME=Sonr Dashboard
|
|
NEXT_PUBLIC_WEBAUTHN_RP_ID=localhost
|
|
NEXT_PUBLIC_WEBAUTHN_ORIGIN=http://localhost:3000
|
|
|
|
# Cache Settings
|
|
NEXT_PUBLIC_CACHE_TTL=300000
|
|
NEXT_PUBLIC_STALE_TIME=60000
|
|
|
|
# Pagination
|
|
NEXT_PUBLIC_DEFAULT_PAGE_SIZE=20
|
|
NEXT_PUBLIC_MAX_PAGE_SIZE=100
|