Reputation: 625
I just built my first basic chatbot on IBM's bluemix using their own tutorial. However, I'm unable to connect the thread of how it gets deployed on bluemix so as to be accessible via web/a url- like the chatbot in this url for example: chatbot in an url
Currently, I'm only finding resources to help me put my chatbot in slack, fb messenger, etc. I dont need all that currently, just looking to have it accessible via url.
Thanks
Upvotes: 1
Views: 851
Reputation: 5330
In this case, log in your IBM Bluemix account and you can simple deploy inside IBM Bluemix with https://bluemix.net/deploy?repository=urlfromGithub
In your case, I recommend for you use conversation-simple from IBM Developers for start only with Conversation Service, this app use only Conversation service.
Enviroment Variable
after install this appWORKSPACE_ID
, in this case, in the file app.js
in line #42 for use your bot created. .env
file with your credentials and WORKSPACE_ID
;Deploy conversation simple inside your IBM Bluemix with this URL, this example had all more details about how to use this app.
Add Enviroment Variable:
Change the username
and password
with YOUR Service Credentials in line #30
Change your workspace_id:
var workspace = 'awidhawfi-fehguaehgae-faefag-etc-etc';
Imported the workspace:
Upvotes: 1