From 287a14cbe4fa29211e19374ab539a2d028b51ce2 Mon Sep 17 00:00:00 2001 From: Asocia Date: Thu, 6 Jan 2022 21:14:22 +0300 Subject: [PATCH] Fix typo --- _posts/2022-01-04-build-and-deploy-automatically.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2022-01-04-build-and-deploy-automatically.md b/_posts/2022-01-04-build-and-deploy-automatically.md index 9cbb771..7b07738 100644 --- a/_posts/2022-01-04-build-and-deploy-automatically.md +++ b/_posts/2022-01-04-build-and-deploy-automatically.md @@ -78,7 +78,7 @@ This is all you have to do from GitHub. Now, whenever there is a *`push`* event #### Creating an endpoint to handle the requests I will use [Flask](https://flask.palletsprojects.com/en/2.0.x/) framework to handle the post requests coming to our endpoint. You can use whatever programming language or framework you want. It will be very simple code with just one job: Validate the secret keys and run a specific code. -Let's start by creating a new project, and a virtual environment: +Let's start by creating a new project and a virtual environment: ```bash mdkir post_receiver cd post_receiver