-
Notifications
You must be signed in to change notification settings - Fork 521
/
app.json
63 lines (63 loc) · 2.04 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
{
"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"
},
"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
},
"PAPERCUPS_SLACK_CLIENT_ID": {
"description": "The client ID of your Slack app",
"required": false
},
"PAPERCUPS_SLACK_CLIENT_SECRET": {
"description": "The client secret of your Slack app",
"required": false
},
"REACT_APP_SLACK_CLIENT_ID": {
"description": "The client ID of your Slack app (should be the same as above)",
"required": false
},
"REACT_APP_GOOGLE_ANALYTICS_ID": {
"description": "Your Google Analytics ID (e.g. UA-000000000-1)",
"required": false
},
"FROM_ADDRESS": {
"description": "The email address where you will be alerting your customer service agents from",
"required": false
},
"MAILGUN_API_KEY": {
"description": "Mailgun api key",
"required": false
},
"DOMAIN": {
"description": "The domain you are sending email from",
"required": false
}
},
"addons": ["heroku-postgresql"],
"scripts": {
"postdeploy": "POOL_SIZE=2 mix ecto.migrate"
},
"stack": "heroku-18",
"buildpacks": [
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/hashnuke/elixir.tgz"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
]
}