-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
28 lines (28 loc) · 855 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
28
{
"name": "Parse Dashbard Heroku",
"description": "An example Parse Dashboard server using the parse-dashboard module",
"repository": "https://github.com/MakeSchool-Tutorials/Parse-Dashboard-Heroku/",
"env": {
"APP_ID": {
"description": "Use the value from your parse setup",
"value": "myAppId"
},
"MASTER_KEY": {
"description": "Use the value from your parse setup. Keep this secret.",
"value": "myMasterKey"
},
"SERVER_URL": {
"description": "Use the value from your parse setup",
"value": "http://yourappname.herokuapp.com/parse"
},
"USERNAME": {
"description": "Username to login to your parse dashboard",
"value": ""
},
"PASSWORD": {
"description": "Password to login to your parse dashboard",
"value": ""
}
},
"image": "heroku/nodejs"
}