Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _includes/parse-server/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ A few of the [Parse Server Options](https://parseplatform.org/parse-server/api/m
* `filesAdapter`: An object that implements the [FilesAdapter](https://github.com/parse-community/parse-server/blob/master/src/Adapters/Files/FilesAdapter.js) interface. For example, [the S3 files adapter](#configuring-file-adapters)
* `auth`: Configure support for [3rd party authentication](#oauth-and-3rd-party-authentication).
* `maxUploadSize`: Maximum file upload size. Make sure your server does not restrict max request body size (e.g. nginx.conf `client_max_body_size 100m;`)
* `cluster`: Runs Parse Server in Node.js cluster mode when starting it with the Parse Server CLI. Set this to `true` to fork one worker per CPU, or to a number to choose the worker count. The CLI starts the worker processes, so this option cannot be used in the `new ParseServer({...})` constructor.

Next, Parse Server can be started with the `.start` method. This ensures that the database connection is establised, cloud code is registered, and any other startup actions.

Expand Down