├── .env_example ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── bot.js ├── index.js ├── package.json └── web.js /.env_example: -------------------------------------------------------------------------------- 1 | NODE_ENV=development 2 | TOKEN=your token here 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/bot.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/package.json -------------------------------------------------------------------------------- /web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odditive/heroku-node-telegram-bot/HEAD/web.js --------------------------------------------------------------------------------