-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.env.example
More file actions
59 lines (48 loc) · 1.54 KB
/
.env.example
File metadata and controls
59 lines (48 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
# Application
PORT=3000
# Database
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_NAME=nestjs_db
DB_SSL=false
# Redis Configuration (BullMQ)
REDIS_HOST=localhost
REDIS_PORT=6379
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-here-change-in-production
JWT_REFRESH_SECRET=your-super-secret-refresh-jwt-key-here-change-in-production
JWT_EXPIRES_IN=1d
# Stellar Network
STELLAR_NETWORK=TESTNET
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Stellar Platform Wallet Addresses (for polling donations)
# Comma-separated list of platform wallet addresses to monitor
STELLAR_PLATFORM_ADDRESSES=G...your-platform-public-key
# Stellar Horizon Polling Configuration
STELLAR_POLLING_INTERVAL_SECONDS=30
STELLAR_POLLING_MAX_RETRIES=3
STELLAR_LAST_PAGING_TOKEN=
# Stellar Platform Keypair (used to send payouts to creators)
# Generate with: stellar-sdk Keypair.random()
STELLAR_PLATFORM_SECRET_KEY=S...your-platform-secret-key
STELLAR_PLATFORM_PUBLIC_KEY=G...your-platform-public-key
# Stellar Asset Issuers (required when paying out non-XLM assets)
STELLAR_USDC_ISSUER=
STELLAR_NGNT_ISSUER=
# Email Configuration
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_SECURE=false
MAIL_USER=your-email@gmail.com
MAIL_PASS=your-app-password
MAIL_FROM=noreply@stellaraid.com
MAIL_SUBJECT_PREFIX=[StellarAid]
# Application Configuration
APP_NAME=StellarAid
FRONTEND_URL=http://localhost:3000
# Environment & Swagger
NODE_ENV=development
# Set to 'true' to enable Swagger in production, or 'false' to disable in development
ENABLE_SWAGGER=true