How to Deploy a Django Application to Heroku with Git CLI

Introduction Heroku is a cloud platform that provides hosting services. It supports several programming languages including PHP, Node.js, and Python. It is Platform-as-a-Service (PaaS) which allows you to manage website applications while it takes care of your servers, networks, storage and other cloud components. In this article, we’ll take a look at how to deploy a Django application to Heroku, using Git. You can follow the same steps, and deploy the application from GitHub, if it’s hosted there. Prerequisites Below […]

Read more

Deploying a Flask Application to Heroku

Introduction In this tutorial you will learn how to deploy a Flask application to Heroku. The app can be as simple as a “Hello World” app to a social media monitoring platform! Nowadays there is no business that doesn’t have a web app to help it a reach greater audience, or maybe provide its services through an online portal. Today you are about to learn how to make an API using Flask as a case study for how to deploy […]

Read more

Deploying Django Apps to Heroku from GitHub

Introduction Heroku is a popular Platform-as-a-Service (PaaS) that allows developers to run and deploy applications by availing the infrastructure required in terms of hardware and software. This means that we do not have to invest in the hardware and software needed to expose our applications to end-users and this freedom allows us to concentrate on our business logic instead of deployment. In this post, we will outline how to deploy a simple Django application to a Heroku pipeline. It targets […]

Read more