From 5a1f2ac6ce58f0631b7a44a8d52a1d6934fc1a9c Mon Sep 17 00:00:00 2001 From: Tom Fox Date: Wed, 20 Mar 2019 17:48:20 +0000 Subject: [PATCH 1/2] remove references to parse.com --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 155c52c7b3..a3c9470c74 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Build Status](https://img.shields.io/travis/parse-community/parse-dashboard/master.svg?style=flat)](https://travis-ci.org/parse-community/parse-dashboard) [![npm version](https://img.shields.io/npm/v/parse-dashboard.svg?style=flat)](https://www.npmjs.com/package/parse-dashboard) -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). +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. * [Getting Started](#getting-started) * [Local Installation](#local-installation) @@ -111,27 +111,22 @@ PARSE_DASHBOARD_CONFIG: undefined // Only for reference, it must not exist ## Managing Multiple Apps -Managing multiple apps from the same dashboard is also possible. Simply add additional entries into the `parse-dashboard-config.json` file's `"apps"` array. - -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`: +Managing multiple apps from the same dashboard is also possible. Simply add additional entries into the `parse-dashboard-config.json` file's `"apps"` array: ```json { "apps": [ { - "serverURL": "https://api.parse.com/1", // Hosted on Parse.com + "serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server "appId": "myAppId", "masterKey": "myMasterKey", - "javascriptKey": "myJavascriptKey", - "restKey": "myRestKey", - "appName": "My Parse.Com App", - "production": true + "appName": "My Parse Server App" }, { - "serverURL": "http://localhost:1337/parse", // Self-hosted Parse Server + "serverURL": "http://localhost:1337/parse2", // Self-hosted Parse Server "appId": "myAppId", "masterKey": "myMasterKey", - "appName": "My Parse Server App" + "appName": "My Parse Server App 2" } ] } From b4266005441fdc47d6697e504f184f209f7a6ceb Mon Sep 17 00:00:00 2001 From: Tom Fox Date: Sat, 30 Mar 2019 12:24:55 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3c9470c74..b25adcb572 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Build Status](https://img.shields.io/travis/parse-community/parse-dashboard/master.svg?style=flat)](https://travis-ci.org/parse-community/parse-dashboard) [![npm version](https://img.shields.io/npm/v/parse-dashboard.svg?style=flat)](https://www.npmjs.com/package/parse-dashboard) -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. +Parse Dashboard is a standalone dashboard for managing your [Parse Server](https://github.com/ParsePlatform/parse-server) apps. * [Getting Started](#getting-started) * [Local Installation](#local-installation)