From 4113b422631c364488bc51152da8b071542e8159 Mon Sep 17 00:00:00 2001 From: raytrask Date: Sun, 14 Aug 2016 02:47:22 -0400 Subject: [PATCH] Document custom server path initialization --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 155482c..9fed2a8 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,15 @@ On Parse, you create an App for each of your applications. Each App has its own Parse.initialize(APP_ID, APP_REST_API_ID); ``` +Since Parse.com servers are shutting down in January 2017, an alternate initialization method is needed for custom server URIs. + +```Java + Parse.initialize(APP_ID, APP_REST_API_ID, CUSTOM_SERVER_PATH); +``` + +You can learn how to migrate your existing applications at [Parse migration](https://parse.com/migration). To learn how to setup your own Parse Server and Parse Dashboard, check out [Parse github](https://github.com/ParsePlatform). + + Getting Started ---------------