forked from MDTechLabs/BridgeWise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.staging.example
More file actions
35 lines (29 loc) · 813 Bytes
/
Copy path.env.staging.example
File metadata and controls
35 lines (29 loc) · 813 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
# Application Environment
NODE_ENV=staging
# Server Configuration
PORT=3000
HOST=0.0.0.0
# Database Configuration
DB_HOST=staging-db.bridgewise.com
DB_PORT=5432
DB_USERNAME=bridgewise_staging
DB_PASSWORD=your_staging_password_here
DB_NAME=bridgewise_staging
DB_SSL=true
# API Configuration
API_KEY=your_staging_api_key_here
API_SECRET=your_staging_api_secret_here
API_BASE_URL=https://staging-api.bridgewise.com
API_TIMEOUT=30000
# RPC URLs
RPC_ETHEREUM=https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID
RPC_POLYGON=https://polygon-rpc.com
RPC_BSC=https://bsc-dataseed.binance.org
RPC_ARBITRUM=https://arb1.arbitrum.io/rpc
RPC_OPTIMISM=https://mainnet.optimism.io
# CORS Configuration
CORS_ORIGIN=https://staging.bridgewise.com
CORS_CREDENTIALS=true
# Logging Configuration
LOG_LEVEL=info
LOG_FORMAT=json