diff --git a/README.md b/README.md index 4a35f0b..11a96ad 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@

-> A notification server for Anilist that uses ntfy. +> A push notification server for Anilist. Fetches data from the anilist API, parses it and delivers push notifications to your device using ntfy. ### 🏠 [Repository](https://github.com/emmaexe/anilist-notifications) @@ -21,6 +21,8 @@ - NodeJS 18.x - node-fetch +> ℹ️ To recieve push notifications, you need to install ntfy and subscribe to them. More info avaliable [here](https://ntfy.sh/). + ## **Installation** Download or clone the [latest release](https://github.com/emmaexe/anilist-notifications/releases/latest). diff --git a/config.js b/config.js index 8ae83e0..4b8d3fb 100644 --- a/config.js +++ b/config.js @@ -47,6 +47,7 @@ module.exports = { 'token': tokenfile.token, 'expires': tokenfile.expires } + console.log('Anilist-notifications ready!') return; } } diff --git a/package.json b/package.json index 5441cd8..a543475 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "anilist-notifications", - "version": "1.0.0", - "description": "A notification server for Anilist that uses ntfy.", + "version": "1.0.1", + "description": "A push notification server for Anilist. Fetches data from the anilist API, parses it and delivers push notifications to your device using ntfy.", "author": "emmaexe", "main": "server.js", "dependencies": { diff --git a/server.js b/server.js index 0268448..793fe79 100644 --- a/server.js +++ b/server.js @@ -1,3 +1,4 @@ +console.log('Anilist-notifications started!') const fetch = require('node-fetch') const fs = require('fs') const { configClass, query } = require('./config.js')