-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (16 loc) · 743 Bytes
/
.env.example
File metadata and controls
20 lines (16 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Database
DATABASE_URL="postgresql://postgres:password@localhost:5432/scryn"
# JWT Secrets (CHANGE THESE IN PRODUCTION!)
# Generate secure secrets using: node -e "console.log(require('crypto').randomBytes(64).toString('hex'))"
ACCESS_TOKEN_SECRET="your-super-secret-access-token-key-change-this-in-production"
REFRESH_TOKEN_SECRET="your-super-secret-refresh-token-key-change-this-in-production"
# Environment
NODE_ENV="development"
# API Configuration
VITE_API_URL="http://localhost:3000/api/v1"
# Airtime/Data Redemption API
VITE_AIRTIME_PROVIDER="ebills"
VITE_EBILLS_API_URL="https://api.ebills.ng/v1"
VITE_EBILLS_API_KEY="your_api_key_here"
VITE_EBILLS_MERCHANT_ID="your_merchant_id_here"
VITE_EBILLS_SECRET_KEY="your_secret_key_here"