Skip to content

Commit 0add7c0

Browse files
authored
Fixes broken links
Fixes #3692
1 parent 1bc74f4 commit 0add7c0

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ That's it! You are now running a standalone version of Parse Server on your mach
4242

4343
### Saving your first object
4444

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:
4646

4747
```bash
4848
curl -X POST \
@@ -104,7 +104,7 @@ $ curl -X GET \
104104

105105
```
106106

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).
108108

109109
### Connect your app to Parse Server
110110

@@ -173,11 +173,7 @@ Logs are also be viewable in Parse Dashboard.
173173

174174
# Documentation
175175

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.
181177

182178
## Configuration
183179

@@ -193,7 +189,7 @@ For the full list of available options, run `parse-server --help`.
193189
* `port` - The default port is 1337, specify this parameter to use a different port.
194190
* `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.
195191
* `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).
197193

198194
#### Client key options
199195

@@ -209,7 +205,7 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
209205
* `fileKey` - For migrated apps, this is necessary to provide access to files already hosted on Parse.
210206
* `allowClientClassCreation` - Set to false to disable client class creation. Defaults to true.
211207
* `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).
213209
* `facebookAppIds` - An array of valid Facebook application IDs that users may authenticate with.
214210
* `mountPath` - Mount path for the server. Defaults to `/parse`.
215211
* `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
340336
* `S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or
341337
* `GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
342338

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).
344340

345341
# Support
346342

347343
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.
348344

349345
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):
350346

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).
352348

353349
- [ ] You're running the [latest version](https://github.com/parse-community/parse-server/releases) of Parse Server.
354350

0 commit comments

Comments
 (0)