forked from papercups-io/papercups
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
46 lines (46 loc) · 1.48 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
{
"name": "Papercups",
"description": "An open source customer chat messaging service",
"repository": "https://github.com/papercups-io/papercups",
"keywords": ["elixir", "phoenix", "chat"],
"env": {
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"FROM_ADDRESS": {
"description": "The email address where you will be alerting your customer service agents from",
"required": false
},
"MAILGUN_API_KEY": {
"description": "Mail gun api key",
"required": false
},
"DOMAIN": {
"description": "The domain you are sending email from",
"required": false
},
"BACKEND_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
},
"REACT_APP_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
}
},
"addons": ["heroku-postgresql"],
"scripts": {
"postdeploy": "POOL_SIZE=2 mix ecto.migrate"
},
"buildpacks": [
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/hashnuke/elixir.tgz"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
]
}