This commit is contained in:
Zsolt Alföldi
2026-05-07 00:14:02 +02:00
commit 469e5b0678
18 changed files with 1898 additions and 0 deletions

27
.env.example Normal file
View File

@@ -0,0 +1,27 @@
NCORE_USERNAME='your-ncore-username'
NCORE_PASSWORD='your-ncore-password'
QBITTORRENT_URL='http://localhost:8080'
QBITTORRENT_USERNAME='admin'
QBITTORRENT_PASSWORD='your-qbit-password'
APP_DB_PATH='data/ncore-hnr.sqlite'
ALERT_AFTER='48h'
# Optional: leave NOTIFICATION_TYPE empty to disable alerts.
# Use 'ntfy' or 'smtp'. If NOTIFICATION_NTFY_URL is set, ntfy is selected automatically.
NOTIFICATION_TYPE=''
# ntfy.sh example: https://ntfy.sh/your-secret-topic
NOTIFICATION_NTFY_URL=''
# SMTP example for Gmail: host smtp.gmail.com, port 587, username your Gmail address,
# password a Gmail app password, from your Gmail address, to your target email.
NOTIFICATION_SMTP_HOST=''
NOTIFICATION_SMTP_PORT='587'
NOTIFICATION_SMTP_USERNAME=''
NOTIFICATION_SMTP_PASSWORD=''
NOTIFICATION_SMTP_FROM=''
NOTIFICATION_SMTP_TO=''
DRY_RUN='false'