forked from Data-Liberation-Front/csvlint.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
51 lines (50 loc) · 795 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "csvlint",
"description": "",
"scripts": {
},
"env": {
"AWS_ACCESS_KEY": {
"required": true
},
"AWS_BUCKET_NAME": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"CSVLINT_SESSION_SECRET": {
"generator": "secret"
},
"LANG": {
"required": true
},
"RACK_ENV": {
"required": true
},
"REDIS_PROVIDER": {
"value": "REDISTOGO_URL"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "hobby"
},
"web": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
"mongolab:sandbox",
"heroku-postgresql",
"redistogo:nano",
"pusher:sandbox"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}