├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── package.json ├── res ├── heroku_firebase.png ├── sample_chat.PNG └── sample_db.png ├── src ├── config │ └── service-account.js ├── index.js ├── server.js ├── services │ ├── facebook.js │ └── firebase.js └── utils │ └── logger.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/package.json -------------------------------------------------------------------------------- /res/heroku_firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/res/heroku_firebase.png -------------------------------------------------------------------------------- /res/sample_chat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/res/sample_chat.PNG -------------------------------------------------------------------------------- /res/sample_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/res/sample_db.png -------------------------------------------------------------------------------- /src/config/service-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/config/service-account.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/server.js -------------------------------------------------------------------------------- /src/services/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/services/facebook.js -------------------------------------------------------------------------------- /src/services/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/services/firebase.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omatt/messenger-chatbot/HEAD/yarn.lock --------------------------------------------------------------------------------