├── hello-world-bot ├── .gitignore ├── LICENSE ├── README.md ├── assets │ └── connexion-settings.png ├── botfile.js ├── index.js ├── modules_config │ └── botpress-messenger.json └── package.json ├── hello-world-rivescript-bot ├── .gitignore ├── LICENSE ├── README.md ├── assets │ ├── connexion-settings.png │ ├── delete-file.png │ ├── new-file.png │ ├── rivescript-code.png │ ├── save-script.png │ └── stop.png ├── botfile.js ├── data │ └── rivescript │ │ ├── begin.rive │ │ └── star.rive ├── index.js ├── modules_config │ └── botpress-messenger.json └── package.json ├── motivation-bot ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets │ └── connexion-settings.png ├── botfile.js ├── data │ └── rivescript │ │ ├── begin.rive │ │ └── star.rive ├── index.js ├── modules_config │ ├── botpress-messenger.json │ └── botpress-subscription.json ├── package.json ├── strip_tokens.js ├── subscription.js └── videos.js └── wit-bot ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── messenger-connexion-settings.png ├── wit-access-token.png ├── wit-connexion-settings.png ├── wit-conversation-weather.png ├── wit-documentation.png ├── wit-hello.png ├── wit-settings.png ├── wit-test.png └── wit-weather.png ├── botfile.js ├── index.js ├── modules_config ├── botpress-messenger.json └── botpress-wit.json └── package.json /hello-world-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/.gitignore -------------------------------------------------------------------------------- /hello-world-bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/LICENSE -------------------------------------------------------------------------------- /hello-world-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/README.md -------------------------------------------------------------------------------- /hello-world-bot/assets/connexion-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/assets/connexion-settings.png -------------------------------------------------------------------------------- /hello-world-bot/botfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/botfile.js -------------------------------------------------------------------------------- /hello-world-bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/index.js -------------------------------------------------------------------------------- /hello-world-bot/modules_config/botpress-messenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/modules_config/botpress-messenger.json -------------------------------------------------------------------------------- /hello-world-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-bot/package.json -------------------------------------------------------------------------------- /hello-world-rivescript-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/.gitignore -------------------------------------------------------------------------------- /hello-world-rivescript-bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/LICENSE -------------------------------------------------------------------------------- /hello-world-rivescript-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/README.md -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/connexion-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/connexion-settings.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/delete-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/delete-file.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/new-file.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/rivescript-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/rivescript-code.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/save-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/save-script.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/assets/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/assets/stop.png -------------------------------------------------------------------------------- /hello-world-rivescript-bot/botfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/botfile.js -------------------------------------------------------------------------------- /hello-world-rivescript-bot/data/rivescript/begin.rive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/data/rivescript/begin.rive -------------------------------------------------------------------------------- /hello-world-rivescript-bot/data/rivescript/star.rive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/data/rivescript/star.rive -------------------------------------------------------------------------------- /hello-world-rivescript-bot/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(bp) { 2 | bp.middlewares.load() 3 | } 4 | -------------------------------------------------------------------------------- /hello-world-rivescript-bot/modules_config/botpress-messenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/modules_config/botpress-messenger.json -------------------------------------------------------------------------------- /hello-world-rivescript-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/hello-world-rivescript-bot/package.json -------------------------------------------------------------------------------- /motivation-bot/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /motivation-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/.gitignore -------------------------------------------------------------------------------- /motivation-bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/Dockerfile -------------------------------------------------------------------------------- /motivation-bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/LICENSE -------------------------------------------------------------------------------- /motivation-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/README.md -------------------------------------------------------------------------------- /motivation-bot/assets/connexion-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/assets/connexion-settings.png -------------------------------------------------------------------------------- /motivation-bot/botfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/botfile.js -------------------------------------------------------------------------------- /motivation-bot/data/rivescript/begin.rive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/data/rivescript/begin.rive -------------------------------------------------------------------------------- /motivation-bot/data/rivescript/star.rive: -------------------------------------------------------------------------------- 1 | + * 2 | - JS: bp.botDefaultResponse(event) -------------------------------------------------------------------------------- /motivation-bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/index.js -------------------------------------------------------------------------------- /motivation-bot/modules_config/botpress-messenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/modules_config/botpress-messenger.json -------------------------------------------------------------------------------- /motivation-bot/modules_config/botpress-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/modules_config/botpress-subscription.json -------------------------------------------------------------------------------- /motivation-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/package.json -------------------------------------------------------------------------------- /motivation-bot/strip_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/strip_tokens.js -------------------------------------------------------------------------------- /motivation-bot/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/subscription.js -------------------------------------------------------------------------------- /motivation-bot/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/motivation-bot/videos.js -------------------------------------------------------------------------------- /wit-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/.gitignore -------------------------------------------------------------------------------- /wit-bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/LICENSE -------------------------------------------------------------------------------- /wit-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/README.md -------------------------------------------------------------------------------- /wit-bot/assets/messenger-connexion-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/messenger-connexion-settings.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-access-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-access-token.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-connexion-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-connexion-settings.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-conversation-weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-conversation-weather.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-documentation.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-hello.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-settings.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-test.png -------------------------------------------------------------------------------- /wit-bot/assets/wit-weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/assets/wit-weather.png -------------------------------------------------------------------------------- /wit-bot/botfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/botfile.js -------------------------------------------------------------------------------- /wit-bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/index.js -------------------------------------------------------------------------------- /wit-bot/modules_config/botpress-messenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/modules_config/botpress-messenger.json -------------------------------------------------------------------------------- /wit-bot/modules_config/botpress-wit.json: -------------------------------------------------------------------------------- 1 | {"accessToken":"","selectedMode":"stories"} -------------------------------------------------------------------------------- /wit-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/botpress-examples/HEAD/wit-bot/package.json --------------------------------------------------------------------------------