-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth_setup.sh
More file actions
executable file
·19 lines (15 loc) · 862 Bytes
/
auth_setup.sh
File metadata and controls
executable file
·19 lines (15 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# URI for your server where the application is being run on. (Example: http://localhost:3000)
export SOB_WEBSERVER=''
# [Important] Since this app is not being distributed (yet?), you will need to create a Slack App
# and provide your own Client ID, Client Secret, and State (Verification Token).
# [Note] The Redirect URI should be the value for SOB_WEBSERVER with '/slack/auth' at the end.
# Follow the documentation here: https://api.slack.com/slack-apps
export SLACK_CLIENT_ID=''
export SLACK_CLIENT_SECRET=''
export SLACK_REDIRECT_URI=`$SOB_WEBSERVER/slack/auth`
export SLACK_STATE=''
# [Important] Since this app is not being distributed (yet?), you will need to create a Stack App
# and provide your own API Key and Access Token.
# Create your application here: https://stackapps.com/apps/oauth/register
export SO_API_KEY=''
export SO_ACCESS_TOKEN=''