forked from derrickreimer/level
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
62 lines (62 loc) · 1.79 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
{
"name": "Level",
"description": "Distraction-free communication for software teams",
"website": "https://level.app",
"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": {
"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_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 (we recommend Postmark).",
"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": ""
}
}
}