forked from connect-boiz/soroban-security-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 742 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 742 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
# Database Configuration
DATABASE_URL=postgres://scanner_user:scanner_pass@localhost:5432/soroban_scanner
REDIS_URL=redis://localhost:6379
# Backend Configuration
BACKEND_PORT=8080
RUST_LOG=debug
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
# Frontend Configuration
NEXT_PUBLIC_API_URL=http://localhost:8080
NEXT_PUBLIC_NETWORK=testnet
# Stellar Configuration
STELLAR_NETWORK=testnet
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Scanner Configuration
CORE_SCANNER_URL=http://localhost:8081
SCAN_TIMEOUT_SECONDS=300
# Security
CORS_ORIGIN=http://localhost:3000
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_WINDOW_SECONDS=60
# Monitoring
SENTRY_DSN=
LOG_LEVEL=info