-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.37 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Uber on Slack PR Review",
"description": "This app is for PR review.",
"keywords": [
"uber",
"slack"
],
"repository": "https://github.com/appacademy/uber_slack",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"env": {
"uber_client_id": {
"description": "Your Uber clien id. Find it in your registered Uber app",
"required": true
},
"uber_client_secret": {
"description": "Your Uber clien secret. Find it in your registered Uber app",
"required": true
},
"slack_client_id": {
"description": "Slack client ID. Find it in your registered Slack App",
"required": true
},
"slack_client_secret": {
"description": "Slack client secret. Find it in your registered Slack App",
"required": true
},
"slack_redirect": {
"description": "Slack redirect URL. e.g.: https://your-app-name.herokuapp.com/api/connect_slack",
"required": true
},
"slack_app_token": {
"description": "Slack APP verification token. Find it in your registered Slack App when you create the slash command",
"required": true
},
"slack_team_token": {
"description": "Your Slack team token. Generate it here: https://api.slack.com/docs/oauth-test-tokens",
"required": true
},
"REDISTOGO_URL": {
"description": "Your REDIS URL. Create REDISTOGO addon in your Heroku APP, then you will have this.",
"required": true
},
"hostname": {
"description": "https://your-app-name.herokuapp.com",
"required": true
},
"slack_oauth_url": {
"description": "Slack oauth URL",
"value": "https://slack.com/api/oauth.access"
},
"uber_callback_url": {
"description": "Uber callback URL",
"value": "https://uberonslack.com/api/connect_uber"
},
"uber_oauth_url": {
"description": "Uber oauth URL",
"value": "https://login.uber.com/oauth/v2/token"
},
"uber_authorize_url": {
"description": "Uber authorize URL",
"value": "https://login.uber.com/oauth/v2/authorize?response_type=code&client_id="
},
"uber_base_url": {
"description": "Uber base URL",
"value": "https://api.uber.com"
}
},
"image": "heroku/ruby",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "heroku/ruby"
}
]
}