├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config.json ├── package.json ├── resources └── wit_ai_backup.zip ├── src ├── api_clients │ └── googleMapsClient.js ├── app.js ├── dialogs │ ├── deleteReminder.js │ ├── firstRun.js │ ├── help.js │ ├── index.js │ ├── newReminder.js │ ├── root.js │ ├── setDatetime.js │ ├── setTimezone.js │ ├── showReminders.js │ └── showTimezone.js ├── helpers │ ├── consts.js │ ├── reminderProcessor.js │ ├── utils.js │ └── witRecognizer.js └── models │ └── reminder.js └── test ├── deleteReminder.js ├── firstRun.js ├── help.js ├── newReminder.js ├── reminderProcessor.js ├── root.js ├── setDatetime.js ├── setTimezone.js ├── showReminders.js ├── showTimezone.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["latest"] 3 | } -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/package.json -------------------------------------------------------------------------------- /resources/wit_ai_backup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/resources/wit_ai_backup.zip -------------------------------------------------------------------------------- /src/api_clients/googleMapsClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/api_clients/googleMapsClient.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/app.js -------------------------------------------------------------------------------- /src/dialogs/deleteReminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/deleteReminder.js -------------------------------------------------------------------------------- /src/dialogs/firstRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/firstRun.js -------------------------------------------------------------------------------- /src/dialogs/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/help.js -------------------------------------------------------------------------------- /src/dialogs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/index.js -------------------------------------------------------------------------------- /src/dialogs/newReminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/newReminder.js -------------------------------------------------------------------------------- /src/dialogs/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/root.js -------------------------------------------------------------------------------- /src/dialogs/setDatetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/setDatetime.js -------------------------------------------------------------------------------- /src/dialogs/setTimezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/setTimezone.js -------------------------------------------------------------------------------- /src/dialogs/showReminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/showReminders.js -------------------------------------------------------------------------------- /src/dialogs/showTimezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/dialogs/showTimezone.js -------------------------------------------------------------------------------- /src/helpers/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/helpers/consts.js -------------------------------------------------------------------------------- /src/helpers/reminderProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/helpers/reminderProcessor.js -------------------------------------------------------------------------------- /src/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/helpers/utils.js -------------------------------------------------------------------------------- /src/helpers/witRecognizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/helpers/witRecognizer.js -------------------------------------------------------------------------------- /src/models/reminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/src/models/reminder.js -------------------------------------------------------------------------------- /test/deleteReminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/deleteReminder.js -------------------------------------------------------------------------------- /test/firstRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/firstRun.js -------------------------------------------------------------------------------- /test/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/help.js -------------------------------------------------------------------------------- /test/newReminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/newReminder.js -------------------------------------------------------------------------------- /test/reminderProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/reminderProcessor.js -------------------------------------------------------------------------------- /test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/root.js -------------------------------------------------------------------------------- /test/setDatetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/setDatetime.js -------------------------------------------------------------------------------- /test/setTimezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/setTimezone.js -------------------------------------------------------------------------------- /test/showReminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/showReminders.js -------------------------------------------------------------------------------- /test/showTimezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/showTimezone.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebsylvester/reminder-bot/HEAD/test/utils.js --------------------------------------------------------------------------------