34 lines
987 B
Bash
34 lines
987 B
Bash
APP_NAME="Uruk International Prize"
|
|
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_URL=https://api.urukprize.iq
|
|
APP_SECRET=your_super_secret_64_char_key_here_for_hmac_and_tokens
|
|
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_DATABASE=uruk_prize_db
|
|
DB_USERNAME=uruk_user
|
|
DB_PASSWORD=uruk_secure_password_2026
|
|
|
|
# OTPIQ Service Credentials (Iraq SMS & WhatsApp Gateway)
|
|
OTPIQ_API_KEY=your_otpiq_api_key
|
|
OTPIQ_SENDER_ID=URUK-PRIZE
|
|
OTPIQ_ENDPOINT=https://api.otpiq.com/api/sms
|
|
|
|
# SwiftPayIQ Credentials (Aggregator Sandbox / Production)
|
|
SWIFTPAY_API_KEY=your_swiftpay_key
|
|
SWIFTPAY_SECRET=your_swiftpay_secret
|
|
SWIFTPAY_ENDPOINT=https://api.swiftpayiq.com/v1
|
|
|
|
# SuperQi / ZainCash Notification Listener Secret
|
|
NOTIFICATION_INGEST_SECRET=secure_ingest_key_for_android_bridge_listener
|
|
|
|
# Official Telegram Verification Bot
|
|
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
|
|
TELEGRAM_BOT_USERNAME=UrukPrizeBot
|
|
|
|
# JWT & Dynamic Encryption Secrets
|
|
JWT_SECRET=super_secret_jwt_signature_key_2026_uruk
|
|
QR_TOKEN_LIFETIME=90
|
|
|