forked from fossasia/yaydoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
87 lines (87 loc) · 2.18 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
{
"name": "Yaydoc",
"description": "Automatic Documentation Generation and Deployment Project.",
"keywords": [
"documentation",
"fossasia",
"node",
"sphinx"
],
"repository": "https://github.com/fossasia/yaydoc",
"env": {
"PYPANDOC_PANDOC": {
"description": "PATH for pandoc. DO NOT CHANGE",
"value": "~/vendor/pandoc/bin/pandoc"
},
"SECRET": {
"generator": "secret"
},
"GITHUB_CLIENT_ID": {
"description": "Unique ClientID assigned while registering OAuth App in Github",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "Unique ClientSecret assigned while registering OAuth App in Github",
"required": true
},
"GITHUB_CALLBACK_URL": {
"value": "https://<app-name>.herokuapp.com/auth/github/callback",
"required": true
},
"HEROKU_CLIENT_ID": {
"description": "Unique ClientID assigned while registering OAuth App in Heroku",
"required": true
},
"HEROKU_CLIENT_SECRET": {
"description": "Unique ClientSecret assigned while registering OAuth App in Heroku",
"required": true
},
"HEROKU_CALLBACK_URL": {
"value": "https://<app-name>.herokuapp.com/auth/heroku/callback",
"required": true
},
"DEPLOYMENT": {
"value": "true"
},
"ENCRYPTION_KEY": {
"value": "ABCGDHEUSHFKIRMJSDFIUTEHFNGOWPOR",
"description": "A 32 character string for encrypting variables.",
"required": true
},
"HOSTNAME": {
"description": "Hostname of your web application."
},
"SMTP_USERNAME": {
"description": "SMTP username"
},
"SMTP_PASSWORD": {
"description": "SMTP password"
},
"SMTP_HOST": {
"description": "SMTP host address"
},
"SMTP_PORT": {
"description": "SMTP port"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
},
{
"url": "https://github.com/imujjwal96/heroku-buildpack-pandoc.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-cli"
},
{
"url": "https://github.com/heroku/heroku-buildpack-jvm-common"
}
],
"addons": [
"mongolab"
]
}