forked from aac5ts/parse-server-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
27 lines (27 loc) · 902 Bytes
/
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
{
"name": "Parse Server Demo",
"description": "A Parse Server demo for the Software Engineering Summit May 2016",
"repository": "https://github.com/aac5ts/parse-server-app",
"logo": "https://avatars0.githubusercontent.com/u/1294580?v=3&s=200",
"keywords": ["node", "express", "parse"],
"env": {
"PARSE_MOUNT": {
"description": "Configure Parse API route.",
"value": "/parse"
},
"APP_ID": {
"description": "A unique identifier for your app.",
"value": "myAppId"
},
"MASTER_KEY": {
"description": "A key that overrides all permissions. Keep this secret.",
"value": "myMasterKey"
},
"SERVER_URL": {
"description": "URL to connect to your Heroku instance (update with your app's name + PARSE_MOUNT)",
"value": "http://my-parse-app.herokuapp.com/parse"
}
},
"image": "heroku/nodejs",
"addons": ["mongolab"]
}