-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
61 lines (61 loc) · 1.55 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
{
"name": "Course Planner",
"description": "This is an application to manage educational courses.",
"keywords": [
"education",
"elixir",
"phoenix"
],
"repository": "https://github.com/digitalnatives/course_planner",
"logo": "https://course-planner-backend.herokuapp.com/images/logo.svg",
"success_url": "/",
"scripts": {
"postdeploy": "POOL_SIZE=2 mix do ecto.migrate, run priv/repo/seeds.exs"
},
"env": {
"ENDPOINT_URL_HOST": {
"description": "This is the host used to build the urls",
"value": "app-name.herokuapp.com"
},
"EMAIL_FROM_EMAIL": {
"description": "Email used to send notifications to users",
"value": "admin@courseplanner.com"
},
"EMAIL_FROM_NAME": {
"description": "Name used to send notifications to users",
"value": "Course Planner"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"POOL_SIZE": {
"description": "Number of Database connections used by the application",
"value": "18"
},
"MIX_ENV": {
"value": "heroku"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE",
"options": {
"version": "9.6"
}
},
{
"plan": "sendgrid:starter",
"as": "SENDGRID"
}
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
]
}