-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 1.23 KB
/
app.json
File metadata and controls
34 lines (34 loc) · 1.23 KB
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
{
"name": "Parse Dashboard Example",
"description": "An example Parse Dashboard server using the parse-dashboard module",
"repository": "https://github.com/cherukumilli/parse-dashboard-example",
"logo": "https://avatars2.githubusercontent.com/u/5217007?v=3&u=52845c74db401e9fc5df5673460f4d6835a6118a&s=200",
"keywords": ["node", "express", "parse", "dashboard"],
"env": {
"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://yourappname.herokuapp.com/parse"
},
"APP_NAME": {
"description": "The name of the app that will show up in the dashboard.",
"value": "myAppName"
},
"USERNAME": {
"description": "The username of the account to log into the dashboard.",
"value": "stefanayala3266@gmail.com"
},
"PASSWORD": {
"description": "The password of the account to log into your dashboard.",
"value": "parse"
}
},
"image": "heroku/nodejs"
}