-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
74 lines (74 loc) · 2 KB
/
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
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
{
"name": "Togelack",
"description": "Summary of Slack talks.",
"repository": "https://github.com/rutan/togelack",
"keywords": [
"slack",
"summary"
],
"addons": [
"mongolab:sandbox"
],
"env": {
"RAILS_ENV": "production",
"MONGOID_ENV": "production",
"SECRET_KEY_BASE": {
"description": "secret-key for generate session",
"generator": "secret"
},
"SLACK_TOKEN": {
"description": "your Slack API Token (see. https://api.slack.com/web#authentication)",
"value": ""
},
"SLACK_CLIENT_ID": {
"description": "your Slack Application Key (see. https://api.slack.com/applications)",
"value": ""
},
"SLACK_CLIENT_SECRET": {
"description": "your Slack Application Secret",
"value": ""
},
"SLACK_TEAM_ID": {
"description": "your Slack Team ID (ex. T12345) (see. https://api.slack.com/methods/team.info/test)",
"value": ""
},
"SLACK_TEAM_NAME": {
"description": "your Slack Team Name (<this is name>.slack.com)",
"value": ""
},
"SLACK_CHANNEL": {
"description": "notify channel name (ex. general)",
"value": "",
"required": false
},
"SLACK_ICON": {
"description": "notify icon (ex. :smile: / http://〜)",
"value": "https://raw.githubusercontent.com/rutan/togelack/master/togelack.png",
"required": false
},
"REDIS_URL": {
"description": "Redis URL(if you want to use for cache)",
"value": "",
"required": false
},
"PRIVATE_MODE": {
"description": "Require login to view contents(set 'true' to enabled)",
"value": "",
"required": false
}
},
"scripts": {
"postdeploy": "bundle exec rake db:mongoid:create_indexes",
"dokku": {
"postdeploy": "bundle exec rake db:mongoid:create_indexes"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby.git"
}
]
}