|
5 | 5 | [](https://travis-ci.org/parse-community/parse-dashboard) |
6 | 6 | [](https://www.npmjs.com/package/parse-dashboard) |
7 | 7 |
|
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. |
9 | 9 |
|
10 | 10 | * [Getting Started](#getting-started) |
11 | 11 | * [Local Installation](#local-installation) |
@@ -111,27 +111,22 @@ PARSE_DASHBOARD_CONFIG: undefined // Only for reference, it must not exist |
111 | 111 |
|
112 | 112 | ## Managing Multiple Apps |
113 | 113 |
|
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: |
117 | 115 |
|
118 | 116 | ```json |
119 | 117 | { |
120 | 118 | "apps": [ |
121 | 119 | { |
122 | | - "serverURL": "https://api.parse.com/1", // Hosted on Parse.com |
| 120 | + "serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server |
123 | 121 | "appId": "myAppId", |
124 | 122 | "masterKey": "myMasterKey", |
125 | | - "javascriptKey": "myJavascriptKey", |
126 | | - "restKey": "myRestKey", |
127 | | - "appName": "My Parse.Com App", |
128 | | - "production": true |
| 123 | + "appName": "My Parse Server App" |
129 | 124 | }, |
130 | 125 | { |
131 | | - "serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server |
| 126 | + "serverURL": "http://localhost:1337/parse2", // Self-hosted Parse Server |
132 | 127 | "appId": "myAppId", |
133 | 128 | "masterKey": "myMasterKey", |
134 | | - "appName": "My Parse Server App" |
| 129 | + "appName": "My Parse Server App 2" |
135 | 130 | } |
136 | 131 | ] |
137 | 132 | } |
|
0 commit comments