├── .env ├── .gitignore ├── Procfile ├── README.md ├── app.json ├── bot.js ├── index.js ├── package.json └── public └── node.svg /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/app.json -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/bot.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupme/bot-tutorial-nodejs/HEAD/public/node.svg --------------------------------------------------------------------------------