forked from comforme/comforme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
49 lines (49 loc) · 1.46 KB
/
app.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
{
"name": "Comforme",
"description": "Community for Me",
"buildpacks": [{"url": "https://github.com/heroku/heroku-buildpack-go"}],
"website": "https://github.com/comforme/comforme",
"repository": "https://github.com/comforme/comforme",
"keywords": ["go", "comfor.me", "comfor", "comforme", "community", "social"],
"addons": ["heroku-postgresql:hobby-dev", "papertrail", "sendgrid:starter", "algoliasearch:free"],
"env": {
"SECRET": {
"description": "This gets generated",
"generator": "secret"
},
"EMAIL": {
"description": "The address that will be used in the from field of transactional emails.",
"value": "[email protected]"
},
"SITENAME": {
"description": "The name of the website.",
"value": "ComFor.Me"
},
"SITELONGNAME" : {
"description": "The expanded name of the website. Can be the same as SITENAME.",
"value": "Community for Me"
},
"PROTOCOL": {
"description": "The protocol to be used in gernerated links.",
"value": "https"
},
"RECAPTCHA_PUBLIC_KEY": {
"description": "Go to https://www.google.com/recaptcha to generate a public key."
},
"RECAPTCHA_PRIVATE_KEY": {
"description": "Go to https://www.google.com/recaptcha to generate a private key."
},
"ALGOLIASEARCH_API_KEY": {
"description": "STUB"
},
"ALGOLIASEARCH_API_KEY_SEARCH": {
"description": "STUB"
},
"ALGOLIA_APPLICATION_ID": {
"description": "STUB"
}
},
"scripts": {
"postdeploy": "./scripts/heroku_postdeploy.sh"
}
}