-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (31 loc) · 855 Bytes
/
Copy pathenv.example
File metadata and controls
40 lines (31 loc) · 855 Bytes
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
38
39
40
# Environment variables for RenVault services
# WebSocket server
WS_HOST=0.0.0.0
WS_PORT=3007
# Admin dashboard
ADMIN_HOST=localhost
ADMIN_PORT=3005
ADMIN_USER=admin
ADMIN_PASS=change-me-in-production
# JWT configuration
JWT_SECRET=change-me-in-production
JWT_EXPIRES_IN=24h
# API Gateway
GATEWAY_HOST=localhost
GATEWAY_PORT=8080
# Service URLs (override defaults for production deployments)
MONITORING_SERVICE_URL=http://localhost:3001
LEADERBOARD_SERVICE_URL=http://localhost:3002
NOTIFICATIONS_SERVICE_URL=http://localhost:3003
BACKUP_SERVICE_URL=http://localhost:3004
ADMIN_SERVICE_URL=http://localhost:3005
# Oracle configuration
ORACLE_API_KEY=change-me-in-production
ORACLE_UPDATE_INTERVAL=60000
# Bridge configuration
BRIDGE_VALIDATOR_THRESHOLD=3
# Node environment
NODE_ENV=development
# Optional full URLs
REALTIME_WS_URL=
GATEWAY_URL=