-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
112 lines (91 loc) · 2.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ha4go.net",
"description": "市民の課題と解決者のマッチングプラットフォームプロジェクト",
"website": "https://ha4go.net/",
"repository": "https://github.com/codeforkanazawa-org/ha4go",
"scripts": {
"postdeploy": "bundle exec rails db:seed"
},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"APP_HOST": {
"description": "foo",
"required": true
},
"FACEBOOK_APP_ID": {
"description": "A Facebook app id",
"required": true
},
"FACEBOOK_APP_SECRET": {
"description": "A Facebook app secret",
"required": true
},
"LANG": {
"required": true,
"value": "ja_JP.UTF-8"
},
"TZ": {
"required": true,
"value": "Asia/Tokyo"
},
"EMAIL_SERVICE": {
"description": "Write what email service you are using",
"required": true,
"value": "sendgrid"
},
"STMP_DOMAIN": {
"required": true
},
"STMP_PORT": {
"required": true,
"value": "587"
},
"STMP_SERVER": {
"required": true,
"value": "smtp.sendgrid.net"
},
"STMP_USER": {
"required": true
},
"STORAGE_SERIVCE": {
"required": true,
"value": "amazon-s3"
},
"S3_ACCESS_KEY_ID": {
"required": true
},
"S3_SECRET_KEY_ID": {
"required": true
},
"S3_REGION": {
"required": true,
"value": "ap-northeast-1"
},
"S3_BUCKET_NAME": {
"required": true
},
"LINK_ABOUT_PROJECT_STATUS": {
"required": true,
"value": "https://github.com/codeforkanazawa-org/ha4go/wiki/%E8%AA%B2%E9%A1%8C%E3%81%AE%E3%82%B9%E3%83%86%E3%83%BC%E3%82%BF%E3%82%B9"
},
"LINK_USER_TERMS": {
"required": true,
"value": "https://github.com/codeforkanazawa-org/ha4go/wiki/ha4go-%E5%88%A9%E7%94%A8%E8%A6%8F%E7%B4%84"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantitiy": 1,
"size": "free"
}
},
"image": "heroku/ruby",
"addons": ["cleardb:ignite", "sendgrid:starter"]
}