-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
41 lines (38 loc) · 1.14 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
{
"name": "We.js blog example project",
"description": "A example of we.js use in heroku",
"repository": "https://github.com/wejs-examples/blog-heroku",
"logo": "https://wejs.org/public/plugin/we-core/files/images/logo.png",
"keywords": ["node", "we.js", "blog"],
"image": "heroku/nodejs",
"env": {
"APP_NAME": {
"description": "The project app name or blog title.",
"value": "We.js blog example",
"required": true
},
"APP_DESCRIPTION": {
"description": "One subject or subtitle for this blog",
"value": "A We.js blog with heroku deploy.",
"required": true
},
"APP_LOGO": {
"description": "URL for project app logo.",
"value": "/public/project/logo.jpg",
"required": true
},
"APP_HOMEBG": {
"description": "URL to backgroud image for blog header, the default is one matrix texts image.",
"value": "/public/project/home-bg.jpg",
"required": true
},
"NODE_ENV": {
"description": "The node.js enviroment, keep production.",
"value": "production",
"required": true
}
},
"addons": [
"heroku-postgresql:hobby-dev"
]
}