forked from beachio/chisel-parse-server-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1 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
{
"name": "Chisel Parse Server",
"description": "Server for Chisel, a Parse-based CMS",
"logo": "https://avatars0.githubusercontent.com/u/1294580?v=3&s=200",
"keywords": [
"chisel",
"parse",
"server"
],
"repository": "https://github.com/beachio/chisel-parse-server-starter",
"env": {
"APP_ID": {
"description": "A unique identifier for your app.",
"value": "SampleAppId"
},
"MASTER_KEY": {
"description": "A key that overrides all permissions. Keep this secret.",
"value": "SampleMasterKey"
},
"PARSE_MOUNT": {
"description": "Configure Parse API route.",
"value": "/parse"
},
"SERVER_URL": {
"description": "URL to connect to your Heroku instance (update with your app's name + PARSE_MOUNT)",
"value": "http://yourappname.herokuapp.com/parse"
},
"SITE_URL": {
"description": "URL of Chisel CMS.",
"value": "http://localhost:9000"
}
},
"image": "heroku/nodejs",
"addons": [
"mongolab"
]
}