"help":"Personally identifiable information fields in the user table the should be removed for non-authorized users.",
"action":parsers.arrayParser,
"default":["email"]
},
"enableAnonymousUsers":{
"env":"PARSE_SERVER_ENABLE_ANON_USERS",
"help":"Enable (or disable) anon users, defaults to true",
"action":parsers.booleanParser,
"default":true
},
"allowClientClassCreation":{
"env":"PARSE_SERVER_ALLOW_CLIENT_CLASS_CREATION",
"help":"Enable (or disable) client class creation, defaults to true",
"action":parsers.booleanParser,
"default":true
},
"auth":{
"env":"PARSE_SERVER_AUTH_PROVIDERS",
"help":"Configuration for your authentication providers, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication",
"action":parsers.objectParser
},
"maxUploadSize":{
"env":"PARSE_SERVER_MAX_UPLOAD_SIZE",
"help":"Max file size for uploads. defaults to 20mb",
"default":"20mb"
},
"verifyUserEmails":{
"env":"PARSE_SERVER_VERIFY_USER_EMAILS",
"help":"Enable (or disable) user email validation, defaults to false",
"help":"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.",
"action":parsers.booleanParser,
"default":true
},
"schemaCacheTTL":{
"env":"PARSE_SERVER_SCHEMA_CACHE_TTL",
"help":"The TTL for caching the schema for optimizing read/write operations. You should put a long TTL when your DB is in production. default to 5000; set 0 to disable.",
"action":parsers.numberParser("schemaCacheTTL"),
"default":5000
},
"cacheTTL":{
"env":"PARSE_SERVER_CACHE_TTL",
"help":"Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)",
"action":parsers.numberParser("cacheTTL"),
"default":5000
},
"cacheMaxSize":{
"env":"PARSE_SERVER_CACHE_MAX_SIZE",
"help":"Sets the maximum size for the in memory cache, defaults to 10000",
"action":parsers.numberParser("cacheMaxSize"),
"default":10000
},
"enableSingleSchemaCache":{
"env":"PARSE_SERVER_ENABLE_SINGLE_SCHEMA_CACHE",
"help":"Use a single schema cache shared across requests. Reduces number of queries made to _SCHEMA. Defaults to false, i.e. unique schema cache per request.",
"help":"This string should match the appId in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same appId."
"help":"This string should match the masterKey in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same masterKey."
"help":"This string should match the serverURL in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same serverURL."
"help":"A JSON object that serves as a whitelist of keys. It is used for validating clients when they try to connect to the LiveQuery server. Check the following Security section and our protocol specification for details.",
"help":"Number of milliseconds between ping/pong frames. The WebSocket server sends ping/pong frames to the clients to keep the WebSocket alive. This value defines the interval of the ping/pong frame from the server to clients. Defaults to 10 * 1000 ms (10 s).",
"help":"Number in milliseconds. When clients provide the sessionToken to the LiveQuery server, the LiveQuery server will try to fetch its ParseUser's objectId from parse server and store it in the cache. The value defines the duration of the cache. Check the following Security section and our protocol specification for details. Defaults to 30 * 24 * 60 * 60 * 1000 ms (~30 days).",