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
@@ -108,15 +108,15 @@ To learn more about using saving and querying objects on Parse Server, check out
108
108
109
109
### Connect your app to Parse Server
110
110
111
-
Parse provides SDKs for all the major platforms. Refer to the Parse Server guide to [learn how to connect your app to Parse Server](https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#using-parse-sdks-with-parse-server).
111
+
Parse provides SDKs for all the major platforms. Refer to the Parse Server guide to [learn how to connect your app to Parse Server](https://github.com/parse-community/parse-server/wiki/Parse-Server-Guide#using-parse-sdks-with-parse-server).
112
112
113
113
## Running Parse Server elsewhere
114
114
115
-
Once you have a better understanding of how the project works, please refer to the [Parse Server wiki](https://github.com/ParsePlatform/parse-server/wiki) for in-depth guides to deploy Parse Server to major infrastructure providers. Read on to learn more about additional ways of running Parse Server.
115
+
Once you have a better understanding of how the project works, please refer to the [Parse Server wiki](https://github.com/parse-community/parse-server/wiki) for in-depth guides to deploy Parse Server to major infrastructure providers. Read on to learn more about additional ways of running Parse Server.
116
116
117
117
### Parse Server Sample Application
118
118
119
-
We have provided a basic [Node.js application](https://github.com/ParsePlatform/parse-server-example) that uses the Parse Server module on Express and can be easily deployed to various infrastructure providers:
119
+
We have provided a basic [Node.js application](https://github.com/parse-community/parse-server-example) that uses the Parse Server module on Express and can be easily deployed to various infrastructure providers:
120
120
121
121
*[Heroku and mLab](https://devcenter.heroku.com/articles/deploying-a-parse-server-to-heroku)
122
122
*[AWS and Elastic Beanstalk](http://mobile.awsblog.com/post/TxCD57GZLM2JR/How-to-set-up-Parse-Server-on-AWS-using-AWS-Elastic-Beanstalk)
@@ -172,7 +172,7 @@ Logs are also be viewable in Parse Dashboard.
172
172
173
173
# Documentation
174
174
175
-
The full documentation for Parse Server is available in the [wiki](https://github.com/ParsePlatform/parse-server/wiki). The [Parse Server guide](https://github.com/ParsePlatform/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/ParsePlatform/parse-server/wiki/Development-Guide) will help you get set up.
175
+
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.
176
176
177
177
## Migrating an Existing Parse App
178
178
@@ -192,7 +192,7 @@ For the full list of available options, run `parse-server --help`.
192
192
*`port` - The default port is 1337, specify this parameter to use a different port.
193
193
*`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.
194
194
*`cloud` - The absolute path to your cloud code `main.js` file.
195
-
*`push` - Configuration options for APNS and GCM push. See the [Push Notifications wiki entry](https://github.com/ParsePlatform/parse-server/wiki/Push).
195
+
*`push` - Configuration options for APNS and GCM push. See the [Push Notifications wiki entry](https://github.com/parse-community/parse-server/wiki/Push).
196
196
197
197
#### Client key options
198
198
@@ -208,12 +208,12 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
208
208
*`fileKey` - For migrated apps, this is necessary to provide access to files already hosted on Parse.
209
209
*`allowClientClassCreation` - Set to false to disable client class creation. Defaults to true.
210
210
*`enableAnonymousUsers` - Set to false to disable anonymous users. Defaults to true.
211
-
*`auth` - Used to configure support for [3rd party authentication](https://github.com/ParsePlatform/parse-server/wiki/OAuth--and-Custom-Authentication).
211
+
*`auth` - Used to configure support for [3rd party authentication](https://github.com/parse-community/parse-server/wiki/OAuth--and-Custom-Authentication).
212
212
*`facebookAppIds` - An array of valid Facebook application IDs that users may authenticate with.
213
213
*`mountPath` - Mount path for the server. Defaults to `/parse`.
214
-
*`filesAdapter` - The default behavior (GridStore) can be changed by creating an adapter class (see [`FilesAdapter.js`](https://github.com/ParsePlatform/parse-server/blob/master/src/Adapters/Files/FilesAdapter.js)).
214
+
*`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)).
215
215
*`maxUploadSize` - Max file size for uploads. Defaults to 20 MB.
216
-
*`loggerAdapter` - The default behavior/transport (File) can be changed by creating an adapter class (see [`LoggerAdapter.js`](https://github.com/ParsePlatform/parse-server/blob/master/src/Adapters/Logger/LoggerAdapter.js)).
216
+
*`loggerAdapter` - The default behavior/transport (File) can be changed by creating an adapter class (see [`LoggerAdapter.js`](https://github.com/parse-community/parse-server/blob/master/src/Adapters/Logger/LoggerAdapter.js)).
217
217
*`sessionLength` - The length of time in seconds that a session should be valid for. Defaults to 31536000 seconds (1 year).
218
218
*`revokeSessionOnPasswordReset` - When a user changes their password, either through the reset password email or while logged in, all sessions are revoked if this is true. Set to false if you don't want to revoke sessions.
219
219
*`accountLockout` - Lock account when a malicious user is attempting to determine an account password by trial and error.
@@ -339,19 +339,19 @@ Parse Server allows developers to choose from several options when hosting files
339
339
*`S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or
340
340
*`GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
341
341
342
-
`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/ParsePlatform/parse-server/wiki/Configuring-File-Adapters).
342
+
`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).
343
343
344
344
# Support
345
345
346
346
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.
347
347
348
-
If you believe you've found an issue with Parse Server, make sure these boxes are checked before [reporting an issue](https://github.com/ParsePlatform/parse-server/issues):
348
+
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):
349
349
350
-
-[ ] You've met the [prerequisites](https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#prerequisites).
350
+
-[ ] You've met the [prerequisites](https://github.com/parse-community/parse-server/wiki/Parse-Server-Guide#prerequisites).
351
351
352
-
-[ ] You're running the [latest version](https://github.com/ParsePlatform/parse-server/releases) of Parse Server.
352
+
-[ ] You're running the [latest version](https://github.com/parse-community/parse-server/releases) of Parse Server.
353
353
354
-
-[ ] You've searched through [existing issues](https://github.com/ParsePlatform/parse-server/issues?utf8=%E2%9C%93&q=). Chances are that your issue has been reported or resolved before.
354
+
-[ ] You've searched through [existing issues](https://github.com/parse-community/parse-server/issues?utf8=%E2%9C%93&q=). Chances are that your issue has been reported or resolved before.
0 commit comments