-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
42 lines (42 loc) · 1.45 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
{
"name": "nodeboard",
"description": "An imageboard you can deploy to Heroku with the push of a button",
"repository": "https://github.com/Ezku/nodeboard",
"logo": "http://img.shields.io/badge/press_button,_get_-nodeboard-blue.svg",
"keywords": [
"node",
"express",
"mongo"
],
"env": {
"BUILDPACK_URL": "https://github.com/ddollar/heroku-buildpack-multi.git",
"S3_BUCKET": {
"description": "An Amazon S3 bucket name for storing uploaded image files"
},
"S3_HOSTNAME": {
"description": "Amazon S3 hostname with region, eg. s3-website-eu-west-1.amazonaws.com",
"value": "s3-website-eu-west-1.amazonaws.com"
},
"AWS_ACCESS_KEY": {
"description": "Amazon AWS access key for a user that can write to the configured S3 bucket"
},
"AWS_SECRET_KEY": {
"description": "Amazon AWS secret key matching the access key"
},
"NODEBOARD_SITE_NAME": {
"description": "The name for your nodeboard instance",
"value": "nodeboard"
},
"NODEBOARD_BOARDS": {
"description": "A JSON-encoded description of your board structure. Format: Map<section,Map<board,{name:String}>>. Name must be alphanumeric - escape any foreign characters.",
"value": "{\"common\": { \"b\": { \"name\": \"Random\" } } }"
},
"NODE_TLS_REJECT_UNAUTHORIZED": {
"description": "Set this to 0 if you don't care about your data",
"value": "0"
}
},
"addons": [
"mongolab"
]
}