Deploying a Flask application to Heroku can seem daunting at first, but with the right steps, it can be a straightforward process. This guide will take you through three diverse examples of deploying a Flask application to Heroku, ensuring that you’ll feel confident in getting your app live and running. Let’s dive in!
This example focuses on a simple Flask application that displays a welcome message. It’s perfect for beginners who want to learn how to deploy a basic app.
To get started, ensure you have the following:
## app.py
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'Welcome to my Flask app!'
if __name__ == '__main__':
app.run(debug=True)
To deploy this app to Heroku:
requirements.txt
file using pip freeze > requirements.txt
.Procfile
that tells Heroku how to run your app:web: python app.py
Initialize a git repository (if not done yet):
git init
git add .
git commit -m "Initial commit"
Log in to Heroku:
heroku login
Create a new Heroku app:
heroku create my-flask-app
Deploy the app:
git push heroku master
Open your app in the browser:
heroku open
Procfile
if your app’s entry point is different.In this example, we will deploy a Flask app that uses environment variables to store sensitive information such as API keys. This is great for real-world applications.
First, let’s create a Flask application that uses an environment variable:
## app.py
import os
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
api_key = os.getenv('API_KEY')
return f'Your API Key is: {api_key}'
if __name__ == '__main__':
app.run(debug=True)
To deploy this app:
requirements.txt
and Procfile
as explained in the first example.heroku create my-flask-app-with-env
Set your environment variable on Heroku:
heroku config:set API_KEY='your_api_key_here'
Deploy your app:
git push heroku master
Open your app:
heroku open
heroku config
.This example illustrates deploying a Flask app that integrates with a database, specifically PostgreSQL. This setup is common for applications needing persistent data storage.
Let’s create a simple Flask application that connects to a PostgreSQL database:
## app.py
from flask import Flask, jsonify
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = os.getenv('DATABASE_URL')
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)
class User(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(80), nullable=False)
@app.route('/users')
def get_users():
users = User.query.all()
return jsonify([user.name for user in users])
if __name__ == '__main__':
app.run(debug=True)
To deploy this app:
requirements.txt
and Procfile
.heroku create my-flask-db-app
Add PostgreSQL to your app:
heroku addons:create heroku-postgresql:hobby-dev
Set up your database:
heroku run python -c 'from app import db; db.create_all()'
Deploy your app:
git push heroku master
Open your app:
heroku open
Flask-SQLAlchemy
and any other dependencies before deploying.DATABASE_URL
is automatically set by Heroku when you add the PostgreSQL addon.These examples of deploying a Flask application to Heroku should give you a solid foundation to start from, whether you’re working on a simple app or one that requires more advanced features like environment variables and databases. Happy coding!