├── .bluemix ├── pipeline-DEPLOY.sh ├── pipeline.yml └── workspace.json ├── .cfignore ├── .env.enc ├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Staticfile ├── actions ├── cloudant-add.js ├── cloudant-read.js ├── cloudant-write.js ├── getGeoLoc.js ├── getWeather.js ├── nlu.js ├── watson-assistant-weather.js └── watson-assistant.js ├── config ├── cloudant-config.json ├── nlu-config.json ├── watson-assistant-config.json └── weather-config.json ├── manifest.yml ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── readme_images ├── appauth.png ├── cors.png ├── createapibutton.png ├── createkey.png ├── createopbutton.png ├── importbutton.png ├── launchtool.png ├── nameapi.png ├── opcreate.png └── openwhiskflow.png ├── src ├── App.css ├── App.js ├── Footer.css ├── Footer.js ├── TopNav.css ├── TopNav.js ├── images │ ├── dot-orange.svg │ ├── dot-purple.svg │ ├── marker-image.png │ ├── watson-avatar-white.png │ └── x.svg ├── index.css ├── index.js ├── logo.svg └── registerServiceWorker.js └── tests └── actions ├── getGeoLoc-test.js ├── getWeather-test.js ├── nlu-test.js ├── watson-assistant-test.js └── watson-assistant-weather-test.js /.bluemix/pipeline-DEPLOY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.bluemix/pipeline-DEPLOY.sh -------------------------------------------------------------------------------- /.bluemix/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.bluemix/pipeline.yml -------------------------------------------------------------------------------- /.bluemix/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.bluemix/workspace.json -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.cfignore -------------------------------------------------------------------------------- /.env.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.env.enc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | app-test 3 | coverage 4 | node_modules 5 | public 6 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/README.md -------------------------------------------------------------------------------- /Staticfile: -------------------------------------------------------------------------------- 1 | root: build 2 | http_strict_transport_security: true -------------------------------------------------------------------------------- /actions/cloudant-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/cloudant-add.js -------------------------------------------------------------------------------- /actions/cloudant-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/cloudant-read.js -------------------------------------------------------------------------------- /actions/cloudant-write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/cloudant-write.js -------------------------------------------------------------------------------- /actions/getGeoLoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/getGeoLoc.js -------------------------------------------------------------------------------- /actions/getWeather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/getWeather.js -------------------------------------------------------------------------------- /actions/nlu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/nlu.js -------------------------------------------------------------------------------- /actions/watson-assistant-weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/watson-assistant-weather.js -------------------------------------------------------------------------------- /actions/watson-assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/actions/watson-assistant.js -------------------------------------------------------------------------------- /config/cloudant-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/config/cloudant-config.json -------------------------------------------------------------------------------- /config/nlu-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/config/nlu-config.json -------------------------------------------------------------------------------- /config/watson-assistant-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/config/watson-assistant-config.json -------------------------------------------------------------------------------- /config/weather-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/config/weather-config.json -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/public/manifest.json -------------------------------------------------------------------------------- /readme_images/appauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/appauth.png -------------------------------------------------------------------------------- /readme_images/cors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/cors.png -------------------------------------------------------------------------------- /readme_images/createapibutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/createapibutton.png -------------------------------------------------------------------------------- /readme_images/createkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/createkey.png -------------------------------------------------------------------------------- /readme_images/createopbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/createopbutton.png -------------------------------------------------------------------------------- /readme_images/importbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/importbutton.png -------------------------------------------------------------------------------- /readme_images/launchtool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/launchtool.png -------------------------------------------------------------------------------- /readme_images/nameapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/nameapi.png -------------------------------------------------------------------------------- /readme_images/opcreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/opcreate.png -------------------------------------------------------------------------------- /readme_images/openwhiskflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/readme_images/openwhiskflow.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/Footer.css -------------------------------------------------------------------------------- /src/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/Footer.js -------------------------------------------------------------------------------- /src/TopNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/TopNav.css -------------------------------------------------------------------------------- /src/TopNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/TopNav.js -------------------------------------------------------------------------------- /src/images/dot-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/images/dot-orange.svg -------------------------------------------------------------------------------- /src/images/dot-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/images/dot-purple.svg -------------------------------------------------------------------------------- /src/images/marker-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/images/marker-image.png -------------------------------------------------------------------------------- /src/images/watson-avatar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/images/watson-avatar-white.png -------------------------------------------------------------------------------- /src/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/images/x.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /tests/actions/getGeoLoc-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/tests/actions/getGeoLoc-test.js -------------------------------------------------------------------------------- /tests/actions/getWeather-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/tests/actions/getWeather-test.js -------------------------------------------------------------------------------- /tests/actions/nlu-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/tests/actions/nlu-test.js -------------------------------------------------------------------------------- /tests/actions/watson-assistant-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/tests/actions/watson-assistant-test.js -------------------------------------------------------------------------------- /tests/actions/watson-assistant-weather-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/text-bot-openwhisk/HEAD/tests/actions/watson-assistant-weather-test.js --------------------------------------------------------------------------------