Good Day is a Slack bot that pings users every day and asks how their day was. It saves the results in a GitHub repository of the user's choice, within a good-day.csv
file in the repo. Check out this sample repo for a preview of what yours could look like.
It also provides a series of visualizations to help users understand their data over time.
The repo contains the code for the core Good Day Slack bot, which is a Slack server that performs a few functions:
- Stores a user's GitHub repo and time preference in a database by collecting info from the Slack app home panel.
- Messages a user every day on the time they have specified with a new Good Day form.
- Stores user's daily data into a
good-day.csv
file in the repo of their choice. - Messages a user every week when new visualization charts have been generated from their data.
Once a user creates a GitHub repository they have to invite the good-day-bot
GitHub user as a collaborator to the repo. This GitHub account (and by extension this Slack app) has write access to only this one particular user repo. This means we are NOT asking for or storing any GitHub user authentication data.
This Slack Bot depends on two Azure functions: https://github.com/githubocto/good-day-azure
- Timed Notify: This function runs every hour, checks the database for users who need a new form, and hits an endpoint on the express server to trigger a new Good Day form for users daily.
- Generate Charts: This function runs every week and generates visualization charts for users in their GitHub repos. It also hits an endpoint on the express server to notify users new charts are ready.
-
Install ngrok and authenticate
-
Create a
.env
file with:
GH_API_KEY=
SLACK_SIGNING_SECRET=
SLACK_BOT_TOKEN=
PG_CONN_STRING=
AZURE_FUNCTIONS_ID= # API Key ID for azure functions
AZURE_FUNCTIONS_SECRET= # API Key secret for azure functions
- Start the server and ngrok
yarn install
yarn dev
In a new tab: ngrok http 3000 --hostname octo-devex.ngrok.io
-
Enable interactivity and change the endpoint for interactive messages at: interactivity and shortcuts to
https://octo-devex.ngrok.io/interactive
-
Enable events and change the endpoint for events at: event subscriptions to
https://octo-devex.ngrok.io/events
Deployment to the production app happens automatically when pushing to main by using a GitHub Action specified in .github/workflows/main_octo-good-day-bot.yaml
.
Or use the Azure App Service VS Code Extension for dev testing work.
-
Enable interactivity and change the endpoint for interactive messages at: interactivity and shortcuts to
PRODUCTION_URL/interactive
-
Enable events and change the endpoint for events at: event subscriptions to
PRODUCTION_URL/events
-
Add the following Bot Token Scopes at: oauth and permissions
chat:write
,files:write
,im:write
,incoming-webhook
,users:read