Deploying a Python Flask Example Application Using Heroku

Welcome! Today we’re going to start building a Flask app that calculates word-frequency pairs based on the text from a given URL. This is a full-stack tutorial. Updates: 02/08/2020: Upgraded to Python version 3.8.1, and use python -m venv instead of pyvenv. 03/22/2016: Upgraded to Python version 3.5.1, and added autoenv version 1.0.0. 02/22/2015: Added Python 3 support. Part One: Set up a local development environment and then deploy both a staging and a production environment on Heroku. (current) Part […]

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