Trying to use Microsoft’s Bot Framework via the botbuilder package.
Per their examples, I’m using restify as my server. Unfortunately, the hyperdev container won’t spin up, and it says “Error” on the logs button. There are no errors in the log window though!
Any ideas?
Looks like your app isn’t listening on the right port. I think you need to use process.env.PORT instead of process.env.port (note the case difference)
process.env.PORT
process.env.port
http://support.hyperdev.com/t/what-port-does-my-app-use/216
Good grief. Thanks, though!