-1

How to deploy Microsoft chatbot service in Azure Virtual machine instead of using App service?

Mark B
  • 581
  • 2
  • 14
  • Possible duplicate of [Bot Framework without Azure possible?](https://stackoverflow.com/questions/40888489/bot-framework-without-azure-possible) – Nicolas R Sep 14 '18 at 12:10

1 Answers1

0

Yes, you'll want to set up your azure virtual machine as normal. Once this is done install node and npm via the console, clone your bot repository, and then run npm install.

After this you can run your bot as normal from the command line, just make sure to open up the port your bot is running on, then set up a bot registration channel pointed at http:<virtualmachinepublicip>:<port>/api/messages

Mark B
  • 581
  • 2
  • 14