-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
71 lines (56 loc) · 2.24 KB
/
env.example
File metadata and controls
71 lines (56 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
# Database
DATABASE_URL="postgresql://user:password@localhost:5432/exovy?schema=public"
# JWT
JWT_SECRET="your-jwt-secret-key-here"
JWT_ADMIN_SECRET="your-admin-jwt-secret-key-here"
JWT_EXPIRES_IN="7d"
# Email (Resend)
RESEND_API_KEY="your-resend-api-key"
FROM_EMAIL="noreply@yourdomain.com"
# AWS S3 (for file uploads)
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your-aws-access-key"
AWS_SECRET_ACCESS_KEY="your-aws-secret-key"
AWS_S3_BUCKET="your-bucket-name"
# Firebase (for push notifications)
FIREBASE_PROJECT_ID="your-project-id"
FIREBASE_PRIVATE_KEY="your-private-key"
FIREBASE_CLIENT_EMAIL="your-client-email"
# CoinGecko (crypto prices)
COINGECKO_API_KEY="your-coingecko-api-key"
# Tatum (Wallet Generation & Blockchain)
TATUM_API_KEY_TESTNET="your-tatum-testnet-api-key"
TATUM_API_KEY_MAINNET="your-tatum-mainnet-api-key"
TATUM_TESTNET="true" # Set to false for production
# Encryption (for private keys and sensitive data)
ENCRYPTION_KEY="your-64-character-hex-encryption-key-here" # Generate with: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
# Monnify (Bank Payouts)
MONNIFY_BASE_URL="https://sandbox.monnify.com" # Use https://api.monnify.com for production
MONNIFY_API_KEY="your-monnify-api-key"
MONNIFY_SECRET_KEY="your-monnify-secret-key"
MONNIFY_CONTRACT_CODE="your-contract-code"
MONNIFY_WALLET_ACCOUNT_NUMBER="your-wallet-account-number"
# Paystack (Bank Payouts)
PAYSTACK_BASE_URL="https://api.paystack.co"
PAYSTACK_SECRET_KEY="your-paystack-secret-key"
# App Configuration
NODE_ENV="development" # development | staging | production
PORT="3000"
APP_URL="http://localhost:3000"
FRONTEND_URL="http://localhost:3001"
# Webhook Configuration
WEBHOOK_SECRET="your-webhook-secret-for-tatum" # For verifying Tatum webhooks
# Smile ID Configuration
SMILE_PARTNER_ID=your_partner_id
SMILE_API_KEY=your_api_key
SMILE_ENV=0 # 0 for sandbox, 1 for production
# Africa's Talking (SMS)
AT_USERNAME="your-africastalking-username"
AT_API_KEY="your-africastalking-api-key"
# Optional for Premium SMS
AT_SHORTCODE="your-shortcode" # e.g., 12345
AT_KEYWORD="your-keyword"
# Dojah Configuration
DOJAH_APP_ID=your_dojah_app_id
DOJAH_SECRET_KEY=your_dojah_secret_key
DOJAH_BASE_URL=https://api.dojah.io # Use https://api.dojah.io for production