forked from derrickreimer/level
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
66 lines (66 loc) · 2.02 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
{
"name": "Level",
"description": "Distraction-free communication for software teams",
"website": "https://levelteams.com",
"repository": "https://github.com/levelhq/level",
"keywords": ["productivity"],
"logo": "https://raw.githubusercontent.com/levelhq/level/master/avatar.png",
"stack": "heroku-16",
"scripts": {
"postdeploy": "script/heroku-postdeploy"
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "10"
}
}
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
],
"env": {
"AWS_ACCESS_KEY_ID": {
"description": "The AWS access key id for your account (with access to S3).",
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "The AWS secret access key corresponding to the access key id.",
"value": ""
},
"LEVEL_ASSET_STORE_BUCKET": {
"description": "The name of the S3 bucket in which to store uploaded assets.",
"value": ""
},
"LEVEL_HOST": {
"description": "The domain on which you are serving this application (set to [your-app-name].herokuapp.com until you setup a custom domain).",
"value": ""
},
"LEVEL_MAILER_HOST": {
"description": "The domain via which to send transaction emails (typically the same as LEVEL_HOST).",
"value": ""
},
"LEVEL_CDN_HOST": {
"description": "The host for the CDN for serving static assets (like Level's CSS and application JS).",
"value": ""
},
"LEVEL_SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"LEVEL_POOL_SIZE": {
"description": "The maximum number of database connections each process may consume.",
"value": "18"
},
"POSTMARK_API_KEY": {
"description": "The API key for Postmark (transactional email sending).",
"value": ""
}
}
}