There can be many reasons for wanting to explore the use of Chatbots. In situations where collaboration tools like Slack are already in place, introducing a bot is merely another form of automation to support the way people work. In companies that are interested in providing a forum for people to develop technical skills, there are definite possibilities offered through Chatbots, especially as extending their functionality is not overly difficult and actually makes them more useful. For the enthusiast, Chatbots provide a glimpse into a future where interactions with technology are more fluid, based on natural language and conversation, but this is where challenges remain, for despite all the powerful technology that has been used to create Hubot, frankly it isn’t that chatty for a chatbot.
Continue reading “AWS ChatOps with Hubot & Slack”Configure Hubot to run in background via systemd
In /etc/systemd/system create a “hubot.service” file and populate it as follows:
$ sudo vi hubot.service [Unit] Description=Hubot Requires=network.target After=network.target [Service] Type=simple WorkingDirectory=/io Restart=always RestartSec=10 ExecStart=/io/bin/hubot --adapter slack [Install] WantedBy=multi-user.targetContinue reading “Configure Hubot to run in background via systemd”
