You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-11Lines changed: 7 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ That's it! You are now running a standalone version of Parse Server on your mach
42
42
43
43
### Saving your first object
44
44
45
-
Now that you're running Parse Server, it is time to save your first object. We'll use the [REST API](https://parse.com/docs/rest/guide), but you can easily do the same using any of the [Parse SDKs](https://parseplatform.github.io/#sdks). Run the following:
45
+
Now that you're running Parse Server, it is time to save your first object. We'll use the [REST API](https://docs.parseplatform.org/rest/guide), but you can easily do the same using any of the [Parse SDKs](https://parseplatform.github.io/#sdks). Run the following:
46
46
47
47
```bash
48
48
curl -X POST \
@@ -104,7 +104,7 @@ $ curl -X GET \
104
104
105
105
```
106
106
107
-
To learn more about using saving and querying objects on Parse Server, check out the [Parse documentation](https://parse.com/docs).
107
+
To learn more about using saving and querying objects on Parse Server, check out the [Parse documentation](https://docs.parseplatform.org).
108
108
109
109
### Connect your app to Parse Server
110
110
@@ -173,11 +173,7 @@ Logs are also be viewable in Parse Dashboard.
173
173
174
174
# Documentation
175
175
176
-
The full documentation for Parse Server is available in the [wiki](https://github.com/parse-community/parse-server/wiki). The [Parse Server guide](https://github.com/parse-community/parse-server/wiki/Parse-Server-Guide) is a good place to get started. If you're interested in developing for Parse Server, the [Development guide](https://github.com/parse-community/parse-server/wiki/Development-Guide) will help you get set up.
177
-
178
-
## Migrating an Existing Parse App
179
-
180
-
The hosted version of Parse will be fully retired on January 28th, 2017. If you are planning to migrate an app, you need to begin work as soon as possible. There are a few areas where Parse Server does not provide compatibility with the hosted version of Parse. Learn more in the [Migration guide](https://parse.com/migration).
176
+
The full documentation for Parse Server is available in the [wiki](https://github.com/parse-community/parse-server/wiki). The [Parse Server guide](http://docs.parseplatform.org/parse-server/guide/) is a good place to get started. If you're interested in developing for Parse Server, the [Development guide](http://docs.parseplatform.org/parse-server/guide/#development-guide) will help you get set up.
181
177
182
178
## Configuration
183
179
@@ -193,7 +189,7 @@ For the full list of available options, run `parse-server --help`.
193
189
*`port` - The default port is 1337, specify this parameter to use a different port.
194
190
*`serverURL` - URL to your Parse Server (don't forget to specify http:// or https://). This URL will be used when making requests to Parse Server from Cloud Code.
195
191
*`cloud` - The absolute path to your cloud code `main.js` file.
196
-
*`push` - Configuration options for APNS and GCM push. See the [Push Notifications wiki entry](https://github.com/parse-community/parse-server/wiki/Push).
192
+
*`push` - Configuration options for APNS and GCM push. See the [Push Notifications quick start](http://docs.parseplatform.org/parse-server/guide/#push-notifications_push-notifications-quick-start).
197
193
198
194
#### Client key options
199
195
@@ -209,7 +205,7 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
209
205
*`fileKey` - For migrated apps, this is necessary to provide access to files already hosted on Parse.
210
206
*`allowClientClassCreation` - Set to false to disable client class creation. Defaults to true.
211
207
*`enableAnonymousUsers` - Set to false to disable anonymous users. Defaults to true.
212
-
*`auth` - Used to configure support for [3rd party authentication](https://github.com/parse-community/parse-server/wiki/OAuth--and-Custom-Authentication).
208
+
*`auth` - Used to configure support for [3rd party authentication](http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication).
213
209
*`facebookAppIds` - An array of valid Facebook application IDs that users may authenticate with.
214
210
*`mountPath` - Mount path for the server. Defaults to `/parse`.
215
211
*`filesAdapter` - The default behavior (GridStore) can be changed by creating an adapter class (see [`FilesAdapter.js`](https://github.com/parse-community/parse-server/blob/master/src/Adapters/Files/FilesAdapter.js)).
@@ -340,15 +336,15 @@ Parse Server allows developers to choose from several options when hosting files
340
336
*`S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or
341
337
*`GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
342
338
343
-
`GridStoreAdapter` is used by default and requires no setup, but if you're interested in using S3 or Google Cloud Storage, additional configuration information is available in the [Parse Server wiki](https://github.com/parse-community/parse-server/wiki/Configuring-File-Adapters).
339
+
`GridStoreAdapter` is used by default and requires no setup, but if you're interested in using S3 or Google Cloud Storage, additional configuration information is available in the [Parse Server guide](http://docs.parseplatform.org/parse-server/guide/#configuring-file-adapters).
344
340
345
341
# Support
346
342
347
343
For implementation related questions or technical support, please refer to the [Stack Overflow](http://stackoverflow.com/questions/tagged/parse.com) and [Server Fault](https://serverfault.com/tags/parse) communities.
348
344
349
345
If you believe you've found an issue with Parse Server, make sure these boxes are checked before [reporting an issue](https://github.com/parse-community/parse-server/issues):
350
346
351
-
-[ ] You've met the [prerequisites](https://github.com/parse-community/parse-server/wiki/Parse-Server-Guide#prerequisites).
347
+
-[ ] You've met the [prerequisites](http://docs.parseplatform.org/parse-server/guide/#prerequisites).
352
348
353
349
-[ ] You're running the [latest version](https://github.com/parse-community/parse-server/releases) of Parse Server.
0 commit comments