├── .env-example ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── index.js └── package.json /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggetsSlackBot/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggetsSlackBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggetsSlackBot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggetsSlackBot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggetsSlackBot/HEAD/package.json --------------------------------------------------------------------------------