We will use Azure Bot Service v3.
1. Setup version control
Create a new git repository. I did it on https://github.com/new. I chose various settings as shown in below image:
Clone the repository locally, create a new branch and push it to server. I did via following commands:
git clone git@github.com:monish001/superbot.gitcd superbotgit checkout mastergit checkout -b devgit push --set-upstream origin dev
2. Create a basic echobot using yeoman.
I named my bot 'superbot' and select Echobot when asked.npm install -g npmnpm install -g yo generator-botbuildercd ..yo botbuildercd superbotnpm start
Now open the bot file in Microsoft Bot Framework Emulator to test the echobot.
3. Push to back to github.
You can find the resulting code at https://github.com/monish001/superbot/releases/tag/0.0.1.git push
Any more questions, please leave a comment or check out related documentation for Microsoft Bot Framework.
No comments:
Post a Comment