/bolt-js-getting-started-app

Getting Started Slack app using ⚡️ Bolt for JavaScript

Primary LanguageJavaScriptMIT LicenseMIT

Getting Started ⚡️ Bolt for JavaScript

Slack app example from 📚 Getting started with Bolt for JavaScript tutorial

Overview

This is a Slack app built with the Bolt for JavaScript framework that showcases responding to events and interactive buttons.

Running locally

1. Setup environment variables

# Replace with your signing secret and token
export SLACK_BOT_TOKEN=<your-bot-token>
export SLACK_SIGNING_SECRET=<your-signing-secret>

2. Setup your local project

# 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

3. Start servers

Setup ngrok to create a local requests URL for development.

npm run ngrok
npm run start