
PORT=5000
NODE_ENV=development

# MongoDB
MONGO_URI=mongodb+srv://<username>:<password>@cluster0.xxxxx.mongodb.net/ihandel?retryWrites=true&w=majority

# JWT
JWT_SECRET=your_super_secret_jwt_key_change_this_in_production
JWT_EXPIRES_IN=7d

# Admin Seed (first-run super admin)
ADMIN_EMAIL=admin@ihandel.in
ADMIN_PASSWORD=Admin@123456
ADMIN_NAME=Super Admin

# External APIs (replace with real provider keys)
RECHARGE_API_URL=https://api.bbps.example.com
RECHARGE_API_KEY=your_recharge_api_key

BILL_PAYMENT_API_URL=https://api.billpay.example.com
BILL_PAYMENT_API_KEY=your_bill_payment_api_key

# SMS / Email notifications (Twilio / SendGrid example)
SENDGRID_API_KEY=SG.xxxxxxxxxxxxxxxx
FROM_EMAIL=noreply@ihandel.in

# CORS
CLIENT_URL=http://localhost:5173
```