27 lines
536 B
Plaintext
27 lines
536 B
Plaintext
# Application
|
|
NODE_ENV=development
|
|
PORT=3023
|
|
SERVICE_NAME=mining-admin-service
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://postgres:password@localhost:5432/mining_admin_db?schema=public
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
REDIS_DB=3
|
|
|
|
# JWT
|
|
JWT_SECRET=your-admin-jwt-secret-key
|
|
JWT_EXPIRES_IN=24h
|
|
|
|
# Services
|
|
CONTRIBUTION_SERVICE_URL=http://localhost:3020
|
|
MINING_SERVICE_URL=http://localhost:3021
|
|
TRADING_SERVICE_URL=http://localhost:3022
|
|
|
|
# Default Admin
|
|
DEFAULT_ADMIN_USERNAME=admin
|
|
DEFAULT_ADMIN_PASSWORD=admin123
|