forked from ngs/ts-dakoku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 loc) · 1.15 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
{
"name": "TS-Dakoku",
"description": "Slack のコマンドで TeamSpirit の打刻をします",
"keywords": ["work", "go", "teamspirit", "salesforce"],
"env": {
"SALESFORCE_CLIENT_ID": {
"description":
"接続アプリケーションのコンシューマ鍵。SalesForce の設定より ビルド > 作成 > アプリケーション 画面より追加します"
},
"SALESFORCE_CLIENT_SECRET": {
"description": "接続アプリケーションのコンシューマ秘密鍵"
},
"SLACK_CLIENT_ID": {
"description": "Slack のコンシューマ鍵"
},
"SLACK_CLIENT_SECRET": {
"description": "Slack のコンシューマ秘密鍵"
},
"SLACK_VERIFICATION_TOKEN": {
"description": "Slack アプリケーション の Verification Token"
},
"TEAMSPIRIT_HOST": {
"description": "TeamSpirit のホスト名"
},
"TZ": "Asia/Tokyo"
},
"addons": [
{
"plan": "heroku-redis:hobby-dev"
}
],
"image": "heroku/go:1.9.4",
"mount_dir": "src/github.com/ngs/ts-dakoku",
"website": "http://github.com/ngs/ts-dakoku",
"repository": "http://github.com/ngs/ts-dakoku"
}