Slack app example from 📚 Getting started with Bolt for JavaScript tutorial
This is a Slack app built with the Bolt for JavaScript framework that showcases responding to events and interactive buttons.
# Replace with your signing secret and token
export SLACK_BOT_TOKEN=<your-bot-token>
export SLACK_SIGNING_SECRET=<your-signing-secret>
# Clone this project onto your machine
git clone https://github.com/slackapi/bolt-js-getting-started-app.git
# Change into the project
cd bolt-js-getting-started-app/
# Install the dependencies
npm install
Setup ngrok to create a local requests URL for development.
npm run ngrok
npm run start