-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.env.development
More file actions
47 lines (38 loc) · 1.17 KB
/
.env.development
File metadata and controls
47 lines (38 loc) · 1.17 KB
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
41
42
43
44
45
46
47
# BridgeWise Development Environment Configuration
# ====================================================
# Application Environment
NODE_ENV=development
# Server Configuration
PORT=3000
HOST=0.0.0.0
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=dev_password
DB_NAME=bridgewise_dev
DB_SSL=false
# Security - Vault Configuration
# Generate a 32-byte encryption key: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
VAULT_ENCRYPTION_KEY=dev-encryption-key-change-in-staging-and-prod
# Security - HTTPS and CORS
FORCE_HTTPS=false
CORS_ORIGIN=http://localhost:3000,http://localhost:3001
CORS_CREDENTIALS=true
# API Configuration
API_KEY=dev_key_xxxxxxxxxxxx
API_SECRET=dev_secret_xxxxxxxxxxxx
API_BASE_URL=https://api.dev.bridgewise.com
API_TIMEOUT=30000
# RPC URLs - Development (can use public nodes)
RPC_ETHEREUM=https://eth.merkle.io
RPC_POLYGON=https://polygon-rpc.com/
RPC_BSC=https://bsc-dataseed1.binance.org:8545
RPC_ARBITRUM=https://arb1.arbitrum.io/rpc
RPC_OPTIMISM=https://mainnet.optimism.io/
# Logging Configuration
LOG_LEVEL=debug
LOG_FORMAT=simple
# Feature Flags
ENABLE_ANALYTICS=true
ENABLE_BENCHMARKING=true