├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bot.js ├── config.js.sample ├── dataService.js ├── docker-compose.yaml ├── further bot settings.md ├── package.json ├── pm2_start.json └── users.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.js 3 | users.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const bot = require('./bot'); 2 | -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/bot.js -------------------------------------------------------------------------------- /config.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/config.js.sample -------------------------------------------------------------------------------- /dataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/dataService.js -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /further bot settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/further bot settings.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/package.json -------------------------------------------------------------------------------- /pm2_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoDJ/telegram-counter-bot/HEAD/pm2_start.json -------------------------------------------------------------------------------- /users.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------