Notification with Apprise - Revadike/epicgames-freebies-claimer GitHub Wiki
Intro
After EFC finishes, it can send a notification to your favorite platform (Discord, Telegram, email...).
Powered by Apprise
Installation
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
Configuration
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": {}
}