├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── css ├── carbon-components.min.css ├── default.css └── material-design.css ├── index.html ├── js ├── carbon-components.min.js ├── chatbot.js ├── email-functions.js ├── main-functions.js ├── mysql-functions.js └── webpush-functions.js ├── php ├── ChatBot.php ├── CreatePush.php └── SendEmail.php ├── screenshots ├── bottom-assistant-mobile-open.PNG ├── bottom-assistant-mobile.PNG ├── bottom-assistant-open.PNG └── bottom-assistant.PNG └── virtual-assistant-ui-mysql-php ├── assistant-ui-mysql-php.json └── virtual-assistant-integrated-with-php.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | credentials.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/README.md -------------------------------------------------------------------------------- /css/carbon-components.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/css/carbon-components.min.css -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/css/default.css -------------------------------------------------------------------------------- /css/material-design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/css/material-design.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/index.html -------------------------------------------------------------------------------- /js/carbon-components.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/carbon-components.min.js -------------------------------------------------------------------------------- /js/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/chatbot.js -------------------------------------------------------------------------------- /js/email-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/email-functions.js -------------------------------------------------------------------------------- /js/main-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/main-functions.js -------------------------------------------------------------------------------- /js/mysql-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/mysql-functions.js -------------------------------------------------------------------------------- /js/webpush-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/js/webpush-functions.js -------------------------------------------------------------------------------- /php/ChatBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/php/ChatBot.php -------------------------------------------------------------------------------- /php/CreatePush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/php/CreatePush.php -------------------------------------------------------------------------------- /php/SendEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/php/SendEmail.php -------------------------------------------------------------------------------- /screenshots/bottom-assistant-mobile-open.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/screenshots/bottom-assistant-mobile-open.PNG -------------------------------------------------------------------------------- /screenshots/bottom-assistant-mobile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/screenshots/bottom-assistant-mobile.PNG -------------------------------------------------------------------------------- /screenshots/bottom-assistant-open.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/screenshots/bottom-assistant-open.PNG -------------------------------------------------------------------------------- /screenshots/bottom-assistant.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/screenshots/bottom-assistant.PNG -------------------------------------------------------------------------------- /virtual-assistant-ui-mysql-php/assistant-ui-mysql-php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/virtual-assistant-ui-mysql-php/assistant-ui-mysql-php.json -------------------------------------------------------------------------------- /virtual-assistant-ui-mysql-php/virtual-assistant-integrated-with-php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacrippa88/watson-assistant-php/HEAD/virtual-assistant-ui-mysql-php/virtual-assistant-integrated-with-php.json --------------------------------------------------------------------------------