-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
99 lines (79 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "Spider Poker",
"description": "Online self-hosted Planning Poker tool for task effort estimation",
"keywords": [
"productivity",
"scrum",
"planning",
"poker",
"projeto-spider"
],
"website": "https://github.com/projeto-spider/spider-poker",
"repository": "https://github.com/projeto-spider/spider-poker",
"logo": "https://camo.githubusercontent.com/2dcd12fd5af7308587c303c1b2494ff13ad5bcfb/687474703a2f2f692e696d6775722e636f6d2f7a4563365065462e706e67",
"success_url": "/",
"scripts": {
"postdeploy": "MIX_ENV=prod mix postdeploy"
},
"env": {
"HOST": {
"description": "Host URL",
"value": "my-app.herokuapp.com",
"required": true
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies",
"generator": "secret"
},
"GA_ID": {
"required": false,
"description": "Your Google Analytics ID in the format UA-XXXXXX-X"
},
"POOL_SIZE": {
"description": "The number of connections to the database",
"value": "10"
},
"GITHUB_CLIENT_ID": {
"required": false,
"description": "GitHub Oauth Client ID for social auth"
},
"GITHUB_CLIENT_SECRET": {
"required": false,
"description": "GitHub Oauth Client Secret for social auth"
},
"GOOGLE_CLIENT_ID": {
"required": false,
"description": "Google Oauth Client ID for social auth"
},
"GOOGLE_CLIENT_SECRET": {
"required": false,
"description": "Google Oauth Client Secret for social auth"
},
"FACEBOOK_CLIENT_ID": {
"required": false,
"description": "Facebook Oauth Client ID for social auth"
},
"FACEBOOK_CLIENT_SECRET": {
"required": false,
"description": "Facebook Oauth Client Secret for social auth"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
],
"buildpacks": [
{"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"},
{"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"}
]
}