This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
60 lines (60 loc) · 1.76 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
{
"name": "ghost over tor on heroku",
"description": "Just a blogging platform over tor",
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3ctEhxVvL3XWsH-kxQecUODOZHudJZ4I_KQ&usqp=CAU",
"repository": "https://github.com/sumithemmadi/ghost-over-tor-on-heroku/",
"success_url": "/ghost",
"addons": [
"heroku-postgresql"
],
"keywords": [
"ghost",
"ghost over tor on heroku",
"onion-service",
"hidden-service",
"tor",
"heroku tor"
],
"env": {
"APP_URL": {
"description": "The URL of this Heroku app.",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"S3_ACCESS_KEY_ID": {
"description": "Set your AWS Access Key ID to enable S3 file storage. Leave blank to disable file uploads.",
"required": false
},
"S3_ACCESS_SECRET_KEY": {
"description": "AWS Access Secret Key, if using S3 file storage.",
"required": false
},
"S3_BUCKET_NAME": {
"description": "Name of your S3 bucket on AWS, if using S3 file storage.",
"required": false
},
"S3_BUCKET_REGION": {
"description": "Region of your S3 bucket on AWS, if using S3 file storage.",
"required": false
},
"S3_ASSET_HOST_URL": {
"description": "Optional custom CDN asset host url, if using S3 file storage.",
"required": false
},
"PGSSLMODE": {
"description": "PostgreSQL SSL connection mode. Set to 'require' to force SSL. Unset it to use the default.",
"required": false,
"value": "require"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-php"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
}
]
}