| title | Deploying to Heroku |
|---|---|
| lang | en |
This guide will walk you through preparing and deploying a Slack app using Bolt for JavaScript and the Heroku platform. Along the way, we'll download a Bolt Slack app, prepare it for Heroku, and deploy it.
When you're finished, you'll have this ⚡️Deploying to Heroku app to run, modify, and make your own.
:::warning
Using Heroku dynos to complete this tutorial counts towards your usage. Delete your app as soon as you are done to control costs.
:::
If you haven't already built your own Bolt app, you can use our Getting Started guide or clone the template app below:
git clone https://github.com/slackapi/bolt-js-getting-started-app.gitAfter you have a Bolt app, navigate to its directory:
cd bolt-js-getting-started-app/Now that you have an app, let's prepare it for Heroku.
Heroku is a flexible platform that requires some configuration to host your app. In this section, we'll update your Bolt app to support Heroku.
:::info
Skip this step if you used git clone in the previous section because you already have a Git repository.
:::
Before you can deploy your app to Heroku, you'll need a Git repository. If you aren't already using Git, you'll need to install Git and create a Git repository.
Every Heroku app uses a special file called Procfile that tells Heroku how to start your app. The contents of the file will depend on whether or not you are using Socket Mode.
Create a new file called Procfile (without any extension) in your app's root directory and paste in one of the following, depending on how you're running your app.
By default, a Bolt Slack app will be started as a web server with a public web address:
web: node app.jsApps using Socket Mode are started as workers that do not listen to a port:
worker: node app.jsOnce you've saved the file, let's commit it to your Git repository:
git add Procfile
git commit -m "Add Procfile":::info
Are you following this guide with an existing Bolt app? If so, please review the guide on preparing a codebase for Heroku to listen on the correct port.
:::
Now we can set up the Heroku tools on your local machine. These tools will help you manage, deploy, and debug your app on Heroku's platform.
The Heroku tools are available as a Command Line Interface (CLI). Go ahead and install the Heroku CLI for macOS, Windows, or Linux. On macOS, you can run the command:
brew install heroku/brew/herokuOnce the install is complete, we can test the Heroku CLI by displaying all of the wonderful commands available to you:
heroku help:::tip
If the heroku command is not found, refresh your path by opening a new terminal session/tab.
:::
The Heroku CLI connects your local machine with your Heroku account. Sign up for a free Heroku account and then log into the Heroku CLI with the following command:
heroku login:::warning
If you're behind a firewall, you may need to set the proxy environment variables for the Heroku CLI.
:::
Check that you're logged in by displaying the account currently connected to your Heroku CLI:
heroku auth:whoamiYou should now be set up with the Heroku tools! Let's move on to the exciting step of creating an app on Heroku.
It's time to create a Heroku app using the tools that you just installed. When you create an app, you can choose a unique name or have it randomly generated.
Creating new Heroku apps will use your existing Heroku plan subscription. When getting started or deploying many small apps, we recommend starting with Heroku's low-cost Eco Dyno plan.
:::tip
Eligible students can apply for platform credits through the Heroku for GitHub Student program.
:::
Create an app on Heroku with a unique name:
heroku create my-unique-bolt-app-nameor, have some fun with a random name:
heroku create
# Creating sharp-rain-871... done, stack is heroku-24
# https://sharp-rain-871.herokuapp.com/ | https://git.heroku.com/sharp-rain-871.git:::info
You can rename a Heroku app at any time, but you may change your Git remote and public web address.
:::
After your app is created, you'll be given some information that we'll use in the upcoming sections. In the example above:
- App name is
sharp-rain-871 - Web address is
https://sharp-rain-871.herokuapp.com/ - Empty Git remote is
https://git.heroku.com/sharp-rain-871.git
The Heroku CLI automatically adds a Git remote called heroku to your local repository. You can list your Git remotes to confirm heroku exists:
git remote -v
# heroku https://git.heroku.com/sharp-rain-871.git (fetch)
# heroku https://git.heroku.com/sharp-rain-871.git (push)Now you'll need to add your Slack app credentials to your Heroku app:
heroku config:set SLACK_SIGNING_SECRET=<your-signing-secret>
heroku config:set SLACK_BOT_TOKEN=xoxb-<your-bot-token>:::info
If you don't know where to find your credentials, please read about exporting your signing secret and token in the Getting Started guide.
:::
Now that we have prepared your local app and created a Heroku app, the next step is to deploy it!
To deploy the app, we're going to push your local code to Heroku, update your Slack app's settings, and say "hello" to your Heroku app. ✨
When deploying an app to Heroku, you'll typically use the git push command. This will push your code from your local repository to your heroku remote repository.
You can now deploy your app with the command:
git push heroku main:::info
Heroku deploys code that's pushed to the master or main branches. Pushing to other branches will not trigger a deployment.
:::
Finally, we need to start a web server instance using the Heroku CLI:
heroku ps:scale web=1Now we need to use your Heroku web address as your Request URL, which is where Slack will send events and actions.
Get your Heroku web address with the following command:
heroku info
# ...
# Web URL: https://sharp-rain-871.herokuapp.com/In our example, the web address is https://sharp-rain-871.herokuapp.com/.
Head over to the Slack App page and select your app name. Next, we'll update your Request URL in two locations to be your web address.
:::tip
Your Request URL ends with /slack/events, such as https://sharp-rain-871.herokuapp.com/slack/events.
:::
First, select Interactivity & Shortcuts from the side and update the Request URL:
Second, select Event Subscriptions from the side and update the Request URL:
:::tip
Heroku Eco Dyno apps sleep when inactive. 💤 If your verification fails, please try it again immediately.
:::
Your app is now deployed and Slack is updated, so let's try it out!
Open a Slack channel that your app has joined and say "hello" (lower-case). Just like in the Getting Started guide, your app should respond back. If you don't receive a response, check your Request URL and try again.
As you continue building your Slack app, you'll need to deploy updates. A common flow is to make a change, commit it, and then push it to Heroku.
Let's get a feel for this by updating your app to respond to a "goodbye" message. Add the following code to app.js (source code on GitHub):
// Listens to incoming messages that contain "goodbye"
app.message('goodbye', async ({ message, say }) => {
// say() sends a message to the channel where the event was triggered
await say(`See ya later, <@${message.user}> :wave:`);
});Commit the changes to your local Git repository:
git commit -am "Say 'goodbye' to a person"Deploy the update by pushing to your heroku remote:
git push heroku mainWhen the deploy is complete, you can open a Slack channel that your app has joined and say "goodbye" (lower-case). You should see a friendly farewell from your Slack app.
You can automate your Slack app deployments using deploy hooks and GitHub Actions. This allows you to automatically deploy changes to your application code and app manifest whenever a PR is merged to your main branch.
In your project's .slack/hooks.json file, add a deploy hook:
{
"hooks": {
"get-hooks": "npx -q --no-install -p @slack/cli-hooks slack-cli-get-hooks",
"deploy": "git push heroku main"
}
}This hook tells Slack's CLI to execute the Heroku deployment command whenever the deploy process is triggered. The slack deploy command will:
- Update your app settings based on any app manifest changes
- Reinstall the app if needed
- Run this deploy hook to push your code to Heroku
This ensures a consistent deploy process for your Slack app. With the deploy command in place, you can set up a GitHub action to manage automatic deployments on merges to your main branch.
Create a new file at .github/workflows/deploy.yml with the following content:
name: Deploy to Heroku
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Install Slack CLI
run: |
curl -fsSL https://downloads.slack-edge.com/slack-cli/install.sh | bash
- name: Install Heroku CLI
run: |
curl https://cli-assets.heroku.com/install.sh | sh
- name: Deploy to Slack and Heroku
env:
SLACK_SERVICE_TOKEN: ${{ secrets.SLACK_SERVICE_TOKEN }}
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: slack deploy -s --token $SLACK_SERVICE_TOKEN
You'll need to add two secrets to your GitHub repository:
SLACK_SERVICE_TOKEN: A token with permissions to deploy your Slack app. If you don't have a token, you can obtain one withslack authHEROKU_API_KEY: Your Heroku API key for deployment authentication
You can add these under your repository's Settings → Secrets and variables → Actions section.
With this setup in place:
- When a PR is merged to the
mainbranch, the GitHub Action is triggered - The action installs the Slack CLI
- The action installs the Heroku CLI
- The
slack deploycommand is executed, which:- Updates your app settings in Slack
- Reinstalls the app if needed
- Runs your deploy hook to push code to Heroku
This automation ensures that both your application code and Slack app configuration stay in sync with each deployment.
You just deployed your first ⚡️Bolt for JavaScript app to Heroku! 🚀
Now that you've deployed a basic app, you can start exploring how to customize and monitor it. Here are some ideas of what to explore next:
- Brush up on how Heroku works and understand the limitations of a Heroku Eco Dyno app.
- Extend your app with with other Bolt capabilities and and Heroku's Add-ons.
- Learn about logging and how to view log messages in Heroku.
- Get ready for primetime with how to scale your Heroku app.

