35 lines
724 B
Plaintext
35 lines
724 B
Plaintext
# =============================================================================
|
|
# Mining Wallet Service - Environment Configuration
|
|
# =============================================================================
|
|
|
|
# Server
|
|
PORT=3025
|
|
NODE_ENV=development
|
|
|
|
# Database
|
|
DATABASE_URL="postgresql://user:password@localhost:5432/mining_wallet_db?schema=public"
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
REDIS_DB=15
|
|
|
|
# Kafka
|
|
KAFKA_BROKERS=localhost:9092
|
|
|
|
# JWT
|
|
JWT_SECRET=your-jwt-secret-key
|
|
|
|
# CORS
|
|
CORS_ORIGIN=*
|
|
|
|
# KAVA Blockchain
|
|
KAVA_RPC_URL=https://evm.kava.io
|
|
KAVA_CHAIN_ID=2222
|
|
KAVA_HOT_WALLET_PRIVATE_KEY=
|
|
KAVA_BLACK_HOLE_ADDRESS=0x000000000000000000000000000000000000dEaD
|
|
|
|
# Swagger
|
|
SWAGGER_ENABLED=true
|