- ngrok
- docker (optional, used for simple spinup of local development with dynamodb)
There are two modes of local development: Docker-Compose w/DynamoDB vs. Cargo (temporary DB us)
SLACK_BOT_TOKEN=<xoxb-1234567>
SLACK_SIGNING_SECRET=<slack-signing-secret>
PAGERDUTY_TOKEN=<api_token> (Optional)
- To use dynamoDB & docker, run
docker compose up --build
- To use a hashmap as a temporary database and test without docker
cargo run --bin receptionist_server --features="tempdb, ansi" --no-default-features
- In a new Terminal, at the ngrok installation directory:
ngrok http 3000
or./ngrok http --region=us --hostname=<custom_name>.ngrok.io 3000
- Get the https url from ngrok and replace all instances of
<MY_BOT_URL_HERE>
in the./manifest.yml
- Paste the updated
manifest
in your Slack App @ https://api.slack.com/apps - (Setting up the Slack App) - It may ask you to verify the Event Subscription URL, if your local bot is running this check should pass.
The Receptionist bot's Slack configuration is in a single ./manifest.yml
file can be pasted into your Slack App Manifest (either when creating a new app or modifying an existing one). You will just need to replace all instances of <MY_BOT_URL_HERE>
in the manifest.yml
with the actual URL of your deployed (or local) application.