-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
51 lines (51 loc) · 1.66 KB
/
app.json
File metadata and controls
51 lines (51 loc) · 1.66 KB
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": "logplex-statsd",
"description": "Report Heroku platform errors to a statsd collector for aggregation and storage",
"repository": "https://github.com/keithduncan/logplex-statsd",
"env": {
"BUILDPACK_URL": {
"description": "Heroku buildpack for deploying Haskell apps",
"value": "https://github.com/keithduncan/haskell-on-heroku"
},
"SCOTTY_ENV": {
"description": "Environment",
"required": true,
"value": "production"
},
"METRICS_CLUSTER": {
"description": "Ordered cluster of hosts to route statsd metrics to",
"required": true,
"value": "statsd://localhost:8126,statsd://localhost:8127"
},
"API_SECRET": {
"description": "Global authentication credentials used if per-app credentials aren't specified",
"required": true,
"generator": "secret"
},
"HALCYON_AWS_ACCESS_KEY_ID": {
"description": "AWS IAM User Access ID for storing build artefacts, requires Get, List, Put and Delete permissions in the configured bucket",
"required": true
},
"HALCYON_AWS_SECRET_ACCESS_KEY": {
"description": "AWS IAM User Secret Key for storing build artefacts",
"required": true
},
"HALCYON_S3_BUCKET": {
"description": "AWS S3 Bucket to store build artefacts",
"required": true
},
"HALCYON_CABAL_VERSION": {
"description": "cabal version to install",
"value": "1.22.6.0"
},
"HALCYON_GHC_VERSION": {
"description": "GHC version to install",
"value": "7.10.1"
}
},
"scripts": {
"postdeploy": {
"build && echo 'Now deploy again to build a slug containing the build dependencies'"
}
}
}