forked from derrickreimer/level
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.52 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.52 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
52
53
54
55
56
{
"name": "Level",
"description": "Smarter communication platform for teams that value focus",
"repository": "https://github.com/levelhq/level",
"keywords": ["chat", "elixir", "phoenix"],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
],
"env": {
"LEVEL_HOST": {
"description": "The domain on which you are serving this application.",
"value": ""
},
"LEVEL_MAILER_HOST": {
"description": "The domain via which to send transaction emails (typically the same as LEVEL_HOST).",
"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"
},
"LEVEL_SMTP_HOST": {
"description": "The hostname of the your SMTP provider.",
"value": ""
},
"LEVEL_SMTP_PORT": {
"description": "The port number for your SMTP provider.",
"value": ""
},
"LEVEL_SMTP_USERNAME": {
"description": "The username for your SMTP provider.",
"value": ""
},
"LEVEL_SMTP_PASSWORD": {
"description": "The password for your SMTP provider.",
"value": ""
}
}
}