forked from Stream-Scholar/Stream-Scholar-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (36 loc) · 1.04 KB
/
Copy path.env.example
File metadata and controls
47 lines (36 loc) · 1.04 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
# Stellar Network Configuration
NETWORK=testnet
HORIZON_URL=https://horizon-testnet.stellar.org
# Testnet Accounts (get testnet XLM from https://friendbot.stellar.org)
DEPLOYER_SECRET=YOUR_DEPLOYER_ACCOUNT_SECRET_KEY_HERE
MINTER_SECRET=YOUR_MINTER_ACCOUNT_SECRET_KEY_HERE
# Frontend Configuration
FRONTEND_URL=http://localhost:8080
API_TIMEOUT=30000
# Development Settings
DEBUG=true
LOG_LEVEL=info
# Security
JWT_SECRET=your-jwt-secret-here
SESSION_SECRET=your-session-secret-here
# Analytics (optional)
GOOGLE_ANALYTICS_ID=
SENTRY_DSN=
# Database (for future enhancements)
DATABASE_URL=postgresql://user:password@localhost:5432/streamscholar
# Redis (for caching)
REDIS_URL=redis://localhost:6379
# Email Service (for notifications)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
# Rate Limiting
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100
# IPFS (for NFT metadata storage)
IPFS_GATEWAY=https://ipfs.io/ipfs/
IPFS_PROJECT_ID=
IPFS_PROJECT_SECRET=
# Monitoring
HEALTH_CHECK_INTERVAL=30000