27 lines
476 B
Bash
27 lines
476 B
Bash
# .env — Video Surveillance Portal
|
|
# Copy this to .env and fill in your values
|
|
|
|
# PlateRecognizer (free tier: https://app.platerecognizer.com/)
|
|
PLATERECOGNIZER_TOKEN=
|
|
|
|
# SMTP for email alerts
|
|
SMTP_HOST=
|
|
SMTP_PORT=587
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
SMTP_FROM=
|
|
ALERT_EMAIL_TO=
|
|
|
|
# Twilio for SMS alerts
|
|
TWILIO_SID=
|
|
TWILIO_TOKEN=
|
|
TWILIO_FROM=
|
|
ALERT_SMS_TO=
|
|
|
|
# Telegram Bot
|
|
TELEGRAM_BOT_TOKEN=
|
|
TELEGRAM_CHAT_ID=
|
|
|
|
# Alert cooldown (seconds between alerts per camera)
|
|
ALERT_COOLDOWN_SEC=30
|