-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
50 lines (50 loc) · 1.6 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
{
"name": "Ghost v3 on Heroku with Cloudinary and own SMTP setup",
"description": "Just a blogging platform",
"logo": "https://cdn.rawgit.com/TryGhost/Ghost-Admin/61fe83dff375a145d5272a5382aa2c72bd994830/public/assets/img/large.png",
"repository": "https://github.com/rbonweb/ghost-v3-on-heroku",
"scripts": {
"postdeploy": "bin/init-deployment"
},
"success_url": "/ghost",
"env": {
"APP_PUBLIC_URL": {
"description": "The HTTPS URL of this app: either your custom domain or default 'herokuapp.com' hostname.",
"value": "https://YOURAPPNAME.herokuapp.com",
"required": true
},
"CLOUDINARY_URL": {
"description": "Enter the API Environment variable URL Provided by Cloudinary(Do not Include \"CLOUDINARY_URL=\")",
"value": "cloudinary://***:**@**",
"required": true
},
"MYSQL_HOST": {
"description": "Example: 127.0.0.1(Any IP Address or hostname)",
"required": false
},
"MYSQL_USER": {
"description": "Database user",
"required": false
},
"MYSQL_PASSWORD": {
"description": "Database user's Password",
"required": false
},
"MYSQL_DB": {
"description": "Database Name",
"required": false
},
"SMTP_HOST": {
"description": "SMTP Mail host. Example: mail.expample.com or smtp.example.com",
"required": true
},
"SMTP_USER": {
"description": "SMTP Mail client user Example: [email protected]",
"required": true
},
"SMTP_PASSWORD": {
"description": "SMTP Mail client password Example: examplepassword",
"required": true
}
}
}