Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apis:
dotnet: https://parseplatform.org/Parse-SDK-dotNET/api/
flutter: https://parseplatform.org/Parse-SDK-Flutter/flutter/flutter_parse_sdk_flutter/flutter_parse_sdk_flutter-library.html
dart: https://parseplatform.org/Parse-SDK-Flutter/dart/flutter_parse_sdk/flutter_parse_sdk-library.html
parse-server: https://parseplatform.org/parse-server/api/
parse-server: https://website.parseplatform.org/parse-server/api/

# Build settings
markdown: kramdown
Expand Down
4 changes: 2 additions & 2 deletions _includes/dart/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ await Parse().initialize(
Due to Cross-Origin Resource Sharing (CORS) restrictions, web support requires adding `X-Parse-Installation-Id` as an allowed header in the Parse Server configuration:

- When running directly via docker, set the env var `PARSE_SERVER_ALLOW_HEADERS=X-Parse-Installation-Id`.
- When running via express, set the [Parse Server option](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) `allowHeaders: ['X-Parse-Installation-Id']`.
- When running via express, set the [Parse Server option](https://website.parseplatform.org/parse-server/api/master/ParseServerOptions.html) `allowHeaders: ['X-Parse-Installation-Id']`.

## Desktop Support (macOS)

Expand Down Expand Up @@ -70,4 +70,4 @@ await Parse().initialize(
//...
clientCreator: ({bool? sendSessionId, SecurityContext? securityContext}) => ParseDioClient(sendSessionId: sendSessionId, securityContext: securityContext),
);
```
```
4 changes: 2 additions & 2 deletions _includes/flutter/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ await Parse().initialize(
Due to Cross-Origin Resource Sharing (CORS) restrictions, web support requires adding `X-Parse-Installation-Id` as an allowed header in the Parse Server configuration:

- When running directly via docker, set the env var `PARSE_SERVER_ALLOW_HEADERS=X-Parse-Installation-Id`.
- When running via express, set the [Parse Server option](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) `allowHeaders: ['X-Parse-Installation-Id']`.
- When running via express, set the [Parse Server option](https://website.parseplatform.org/parse-server/api/master/ParseServerOptions.html) `allowHeaders: ['X-Parse-Installation-Id']`.

## Desktop Support (macOS)

Expand Down Expand Up @@ -70,4 +70,4 @@ await Parse().initialize(
//...
clientCreator: ({bool? sendSessionId, SecurityContext? securityContext}) => ParseDioClient(sendSessionId: sendSessionId, securityContext: securityContext),
);
```
```
2 changes: 1 addition & 1 deletion _includes/graphql/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $ parse-server --appId APPLICATION_ID --masterKey MASTER_KEY --databaseURI mongo
```

Notes:
* Run `parse-server --help` or refer to [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) for a complete list of Parse Server configuration options.
* Run `parse-server --help` or refer to [Parse Server Options](https://website.parseplatform.org/parse-server/api/master/ParseServerOptions.html) for a complete list of Parse Server configuration options.
* ⚠️ Please do not use `--mountPlayground` option in production as anyone could access your API Playground and read or change your application's data. [Parse Dashboard](#running-parse-dashboard) has a built-in GraphQL Playground and it is the recommended option for production apps. If you want to secure your API in production take a look at [Class Level Permissions](/js/guide/#class-level-permissions)

After running the CLI command, you should have something like this in your terminal:
Expand Down
2 changes: 1 addition & 1 deletion _includes/parse-server/deploying-aws-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ After that, we need to setup the configuration file, use your own `appId`, `mast
```bash
sudo nano -w config.json
```
This are the basic options of the config.json file, for the full list you can type `parse-server --help` or refer to the [full options document](https://parseplatform.org/parse-server/api/5.2.0/ParseServerOptions.html) for more details.
These are the basic options of the config.json file. For the full list, you can run `parse-server --help` or refer to the [full options document](https://website.parseplatform.org/parse-server/api/5.2.0/ParseServerOptions.html) for more details.
```jsonc
{
"appId": "exampleAppId",
Expand Down
2 changes: 1 addition & 1 deletion _includes/parse-server/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const api = new ParseServer({
});
```

A few of the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) are as follows:
A few of the [Parse Server Options](https://website.parseplatform.org/parse-server/api/master/ParseServerOptions.html) are as follows:

* `databaseURI`: Connection string for your database.
* `cloud`: Path to your app’s Cloud Code.
Expand Down
2 changes: 1 addition & 1 deletion parse-server-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ layout: redirected
sitemap: false
permalink: /parse-server/api/
redirect_to:
- https://parseplatform.org/parse-server/api
- https://website.parseplatform.org/parse-server/api/
---