https://github.com/serginator/fdi_nodebot
Bot to remember birthdays in a Telegram chat for old university colleagues running in Heroku. It is going to die on November 28, 2022, as Heroku will stop free tier access.
https://github.com/serginator/fdi_nodebot
heroku telegram telegram-bot
Last synced: 10 months ago
JSON representation
Bot to remember birthdays in a Telegram chat for old university colleagues running in Heroku. It is going to die on November 28, 2022, as Heroku will stop free tier access.
- Host: GitHub
- URL: https://github.com/serginator/fdi_nodebot
- Owner: serginator
- Created: 2016-11-24T15:07:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-03T06:12:41.000Z (about 7 years ago)
- Last Synced: 2025-06-11T11:20:39.047Z (about 1 year ago)
- Topics: heroku, telegram, telegram-bot
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FDI NodeBot
Bot to remember birthdays in a Telegram chat for old university colleagues
## contribute
Make a fork of the repo and clone your fork
`git clone git@github.com:/fdi_nodebot`
Install dependencies
`npm install`
Make your changes and open a pull request to main repo.
## configure file
Just add a file `.env` on root of the project, with the following content
```
TELEGRAM_TOKEN=XXXX:YYYY
CHANNEL_ID=123456
NODE_ENV=development
```
## configure list of birthdays
Just edit `birthdays.js` on root of the project, with the name as key and the birthday (day/month) as value
```
module.exports = {
'Mike': '25/6',
'Jenn': '12/5',
'Lisa': '31/12',
'Rob': '1/1',
'Helen': '28/3'
}
```