forked from mrhardikjoshi/cody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
31 lines (31 loc) · 770 Bytes
/
app.json
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
{
"name": "Cody",
"description": "A simple bot to manage code review through Pull Requests",
"repository": "https://github.com/aergonaut/cody",
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"memcachedcloud:30"
],
"scripts": {
"postdeploy": "bundle exec rake db:schema:load"
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"env": {
"CODY_GITHUB_ACCESS_TOKEN": {
"description": "A GitHub personal access token used for setting commit statuses and access Pull Request data.",
"required": true
},
"RAVEN_DSN": {
"description": "Sentry DSN. See https://docs.sentry.io/quickstart/#about-the-dsn",
"required": true
}
}
}