26 lines
764 B
Bash
26 lines
764 B
Bash
# .env.example - contoh pengaturan SMTP untuk Gmail
|
|
# Copy this file to .env and fill your real credentials (do NOT commit .env)
|
|
|
|
# SMTP settings (Gmail recommended)
|
|
# Use an App Password (recommended) for Gmail. See README/instructions.
|
|
|
|
# Optional: override 'From' email
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=appsibal@gmail.com
|
|
SMTP_PASS=yogsorikxfqymakh
|
|
SMTP_SENDER_NAME=SIBAL
|
|
|
|
OTP_DEBUG=false
|
|
OTP_EXPIRE_MINUTES=10
|
|
|
|
# optional: SMTP_SENDER=display.name@example.com
|
|
# OTP_DEBUG=false # default false; set true to print OTP in console for debug
|
|
# SMTP_SENDER=some.name@example.com
|
|
|
|
# Other optional env vars used by the app
|
|
# SECRET_KEY=...
|
|
# GOOGLE_CLIENT_ID=...
|
|
# GOOGLE_CLIENT_SECRET=...
|
|
# GOOGLE_REDIRECT_URI=http://localhost:8051/auth/callback
|