Chatbot webapp is a chatbot wizard.
- Copy
dist
folder to project. - Just add following markup to any page or add new html file with this content:
<script>
fullPage = false;
chatbot_identifier = 'chatbot-widget';
botName = '<lex-bot>'
awsRegion = '<aws-region>'
awsCognitoPoolId = '<aws-cognito-pool>'
</script>
<div id="chatbot-widget" data-username="Hey User">
<script src="dist/bundle.min.js"></script>
Change the botName
, awsRegion
, awsCognitoPoolId
and bundle file path.
install packages: npm install
run bundle task: gulp bundle
It will create dist
directory and place minifies CSS and JS files in it. Always use minified files in production.
See the response.md file for expected response format.