forked from Servora/StellarCert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (36 loc) · 1.09 KB
/
.env.example
File metadata and controls
43 lines (36 loc) · 1.09 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
# Database Configuration
POSTGRES_DB=stellarwave
POSTGRES_USER=stellarwave_user
POSTGRES_PASSWORD=stellarwave_password
# Backend Configuration
NODE_ENV=production
PORT=3000
DB_TYPE=postgres
DB_HOST=postgres
DB_PORT=5432
DB_USERNAME=stellarwave_user
DB_PASSWORD=stellarwave_password
DB_NAME=stellarwave
REDIS_URL=redis://redis:6379
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
JWT_EXPIRES_IN=3600
# CORS Configuration
ALLOWED_ORIGINS=http://localhost:5173,http://frontend:5173
CORS_ORIGIN=http://localhost:5173,http://frontend:5173
# Stellar Configuration
STELLAR_NETWORK=TESTNET
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
STELLAR_ISSUER_SECRET_KEY=your-stellar-issuer-secret-key
STELLAR_ISSUER_PUBLIC_KEY=your-stellar-issuer-public-key
# Logging Configuration
LOG_LEVEL=info
# Monitoring Configuration
METRICS_ENABLED=true
SENTRY_DSN=your-sentry-dsn-here
# Frontend Configuration
VITE_API_URL=http://localhost:3000/api
VITE_STELLAR_NETWORK=TESTNET
VITE_HORIZON_URL=https://horizon-testnet.stellar.org
VITE_ENABLE_NOTIFICATIONS=true
VITE_ENABLE_METRICS=true