Skip to content

Commit c030acd

Browse files
authored
Remove references to parse.com (#1027)
* remove references to parse.com * Update README.md
1 parent 20393b4 commit c030acd

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

README.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Build Status](https://img.shields.io/travis/parse-community/parse-dashboard/master.svg?style=flat)](https://travis-ci.org/parse-community/parse-dashboard)
66
[![npm version](https://img.shields.io/npm/v/parse-dashboard.svg?style=flat)](https://www.npmjs.com/package/parse-dashboard)
77

8-
Parse Dashboard is a standalone dashboard for managing your Parse apps. You can use it to manage your [Parse Server](https://github.com/ParsePlatform/parse-server) apps and your apps that are running on [Parse.com](https://Parse.com).
8+
Parse Dashboard is a standalone dashboard for managing your [Parse Server](https://github.com/ParsePlatform/parse-server) apps.
99

1010
* [Getting Started](#getting-started)
1111
* [Local Installation](#local-installation)
@@ -111,27 +111,22 @@ PARSE_DASHBOARD_CONFIG: undefined // Only for reference, it must not exist
111111

112112
## Managing Multiple Apps
113113

114-
Managing multiple apps from the same dashboard is also possible. Simply add additional entries into the `parse-dashboard-config.json` file's `"apps"` array.
115-
116-
You can manage self-hosted [Parse Server](https://github.com/ParsePlatform/parse-server) apps, *and* apps that are hosted on [Parse.com](http://parse.com/) from the same dashboard. In your config file, you will need to add the `restKey` and `javascriptKey` as well as the other paramaters, which you can find on `dashboard.parse.com`. Set the serverURL to `http://api.parse.com/1`:
114+
Managing multiple apps from the same dashboard is also possible. Simply add additional entries into the `parse-dashboard-config.json` file's `"apps"` array:
117115

118116
```json
119117
{
120118
"apps": [
121119
{
122-
"serverURL": "https://api.parse.com/1", // Hosted on Parse.com
120+
"serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server
123121
"appId": "myAppId",
124122
"masterKey": "myMasterKey",
125-
"javascriptKey": "myJavascriptKey",
126-
"restKey": "myRestKey",
127-
"appName": "My Parse.Com App",
128-
"production": true
123+
"appName": "My Parse Server App"
129124
},
130125
{
131-
"serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server
126+
"serverURL": "http://localhost:1337/parse2", // Self-hosted Parse Server
132127
"appId": "myAppId",
133128
"masterKey": "myMasterKey",
134-
"appName": "My Parse Server App"
129+
"appName": "My Parse Server App 2"
135130
}
136131
]
137132
}

0 commit comments

Comments
 (0)