Telegram is a popular online messaging app, like WhatsApp and Facebook Messenger. One thing about Telegram that has caught my attention is how easy it is to set up a bot and get it running with some simple commands with the guidance of the BotFather. As Telegram describes it:
BotFather is the one bot to rule them all. It will help you create new bots and change settings for existing ones.
So, how do we create our Telegram bot? Let’s get started!
Before you create your account, you need to download the Telegram app. …
In this article, I’ll show you how to set up Bitbucket Pipelines to do continuous integration/continuous deployment (CI/CD) with Jovo.
Several Git repositories include tools to run CI/CD tasks:
I’m working on an Alexa Skill and have my project saved in Bitbucket. Before doing automatic deployment with CI/CD, I run the following Jovo commands in my console after I push my code to dev
/staging
/master
branches in my repository:
jovo deploy — stage dev
jovo deploy -p alexaSkill — stage dev -t info
jovo deploy -p alexaSkill — stage dev -t…
In this article, I’ll show you how to set up GitHub Actions to do continuous integration/continuous deployment (CI/CD) with Jovo.
You can also take a look at a previous article I published about doing continuous integration in Bitbucket Pipelines.
So, let’s get started on how to set up GitHub Actions to run CI/CD pipeline.
When you work with GitHub Actions, you can add a file named nodejs.yml
into this path of your project: /.github/workflows/nodejs.yml to define the CI/CD instructions. Here’s the file I have in my repository:
In the pull_request section, I have defined the branches I want this yml file to run for when a new Pull Request is opened. I have also defined the steps that I want to run for Continuos…
Last year I was working on some Alexa Skill project I can’t remember, when I heard about a new virtual assistant, Samsung Bixby.
As a developer, the first questions I asked myself were:
So, I decided to dig into it. First thing first, the documentation. I don’t remember if the link has been changed since then, but I couldn’t get the gig of it. …
About