forked from nathydre21/nepa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test
More file actions
32 lines (25 loc) · 716 Bytes
/
.env.test
File metadata and controls
32 lines (25 loc) · 716 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
31
32
# Test Environment Variables
NODE_ENV=test
DATABASE_URL=postgresql://test:test@localhost:5432/nepa_test
# JWT Secrets for testing
JWT_SECRET=test_jwt_secret_key_for_testing_only
JWT_REFRESH_SECRET=test_refresh_secret_key_for_testing_only
# Stellar Testnet
STELLAR_NETWORK=testnet
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Redis (for testing, can be in-memory)
REDIS_URL=redis://localhost:6379/1
# Email (disable for testing)
EMAIL_SERVICE=none
SMTP_HOST=
SMTP_PORT=
SMTP_USER=
SMTP_PASS=
# File Storage (local for testing)
FILE_STORAGE_TYPE=local
UPLOAD_DIR=./test-uploads
# Rate Limiting (relaxed for testing)
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=1000
# Logging
LOG_LEVEL=error