-
-
Notifications
You must be signed in to change notification settings - Fork 359
Notification with Apprise
Trung Le edited this page Dec 17, 2021
·
2 revisions
After EFC finishes, it can send a notification to your favorite platform (Discord, Telegram, email...).
Powered by Apprise
For Docker users, it is already built in so you don't need to install anything.
For Node users:
- Install Python >= 3.8
- Install Apprise:
pip3 install apprise
It is better to install this in a virtual environment
In data
folder, copy config.json.example
to config.json
and edit it.
In appriseUrl
, configure your URL with Apprise syntax to receive notifications.
Example for Telegram bot:
{
"appriseUrl": "tgram://12345:random_token/0987654321",
"delay": 1440,
"loop": false,
"options": {}
}