parse-server 9.5.0-alpha.6 → 9.5.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/lib/Options/Definitions.js +2 -2
- package/lib/Options/docs.js +2 -2
- package/lib/Options/index.js +1 -1
- package/lib/ParseServer.js +2 -1
- package/lib/Routers/PagesRouter.js +2 -2
- package/lib/Security/CheckGroups/CheckGroupServerConfig.js +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -822,7 +822,7 @@ $ parse-server --appId APPLICATION_ID --masterKey MASTER_KEY --databaseURI mongo
|
|
|
822
822
|
|
|
823
823
|
After starting the server, you can visit http://localhost:1337/playground in your browser to start playing with your GraphQL API.
|
|
824
824
|
|
|
825
|
-
**_Note:_** Do **_NOT_** use --mountPlayground option in production. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and
|
|
825
|
+
**_Note:_** Do **_NOT_** use --mountPlayground option in production. The GraphQL Playground exposes the master key in the browser page. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and is the recommended option for production apps.
|
|
826
826
|
|
|
827
827
|
### Using Docker
|
|
828
828
|
|
|
@@ -845,7 +845,7 @@ $ docker run --name my-parse-server --link my-mongo:mongo -v config-vol:/parse-s
|
|
|
845
845
|
|
|
846
846
|
After starting the server, you can visit http://localhost:1337/playground in your browser to start playing with your GraphQL API.
|
|
847
847
|
|
|
848
|
-
**_Note:_** Do **_NOT_** use --mountPlayground option in production. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and
|
|
848
|
+
**_Note:_** Do **_NOT_** use --mountPlayground option in production. The GraphQL Playground exposes the master key in the browser page. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and is the recommended option for production apps.
|
|
849
849
|
|
|
850
850
|
### Using Express.js
|
|
851
851
|
|
|
@@ -899,7 +899,7 @@ $ node index.js
|
|
|
899
899
|
|
|
900
900
|
After starting the app, you can visit http://localhost:1337/playground in your browser to start playing with your GraphQL API.
|
|
901
901
|
|
|
902
|
-
**_Note:_** Do **_NOT_** mount the GraphQL Playground in production. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and
|
|
902
|
+
**_Note:_** Do **_NOT_** mount the GraphQL Playground in production. The GraphQL Playground exposes the master key in the browser page. [Parse Dashboard](https://github.com/parse-community/parse-dashboard) has a built-in GraphQL Playground and is the recommended option for production apps.
|
|
903
903
|
|
|
904
904
|
## Checking the API health
|
|
905
905
|
|