help:'account lockout policy for failed login attempts',
action:parsers.objectParser,
},
allowClientClassCreation:{
env:'PARSE_SERVER_ALLOW_CLIENT_CLASS_CREATION',
help:'Enable (or disable) client class creation, defaults to true',
action:parsers.booleanParser,
default:true,
},
allowCustomObjectId:{
env:'PARSE_SERVER_ALLOW_CUSTOM_OBJECT_ID',
help:'Enable (or disable) custom objectId',
action:parsers.booleanParser,
default:false,
},
allowHeaders:{
env:'PARSE_SERVER_ALLOW_HEADERS',
help:'Add headers to Access-Control-Allow-Headers',
action:parsers.arrayParser,
},
allowOrigin:{
env:'PARSE_SERVER_ALLOW_ORIGIN',
help:'Sets the origin to Access-Control-Allow-Origin',
},
analyticsAdapter:{
env:'PARSE_SERVER_ANALYTICS_ADAPTER',
help:'Adapter module for the analytics',
action:parsers.moduleOrObjectParser,
},
appId:{
env:'PARSE_SERVER_APPLICATION_ID',
help:'Your Parse Application ID',
required:true,
},
appName:{
env:'PARSE_SERVER_APP_NAME',
help:'Sets the app name',
},
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,
},
cacheAdapter:{
env:'PARSE_SERVER_CACHE_ADAPTER',
help:'Adapter module for the cache',
action:parsers.moduleOrObjectParser,
},
cacheMaxSize:{
env:'PARSE_SERVER_CACHE_MAX_SIZE',
help:'Sets the maximum size for the in memory cache, defaults to 10000',
'Replace HTTP Interface when using JS SDK in current node runtime, defaults to false. Caution, this is an experimental feature that may not be appropriate for production.',
help:'Enable (or disable) anonymous users, defaults to true',
action:parsers.booleanParser,
default:true,
},
enableExpressErrorHandler:{
env:'PARSE_SERVER_ENABLE_EXPRESS_ERROR_HANDLER',
help:'Enables the default express error handler for all errors',
action:parsers.booleanParser,
default:false,
},
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.',
'Options for request idempotency to deduplicate identical requests that may be caused by network issues. Caution, this is an experimental feature that may not be appropriate for production.',
help:'Max value for limit option on queries, defaults to unlimited',
action:parsers.numberParser('maxLimit'),
},
maxLogFiles:{
env:'PARSE_SERVER_MAX_LOG_FILES',
help:
"Maximum number of logs to keep. If not set, no logs will be removed. This can be a number of files or number of days. If using days, add 'd' as the suffix. (default: null)",
action:parsers.objectParser,
},
maxUploadSize:{
env:'PARSE_SERVER_MAX_UPLOAD_SIZE',
help:'Max file size for uploads, defaults to 20mb',
default:'20mb',
},
middleware:{
env:'PARSE_SERVER_MIDDLEWARE',
help:'middleware for express server, can be string or function',
},
mountGraphQL:{
env:'PARSE_SERVER_MOUNT_GRAPHQL',
help:'Mounts the GraphQL endpoint',
action:parsers.booleanParser,
default:false,
},
mountPath:{
env:'PARSE_SERVER_MOUNT_PATH',
help:'Mount path for the server, defaults to /parse',
default:'/parse',
},
mountPlayground:{
env:'PARSE_SERVER_MOUNT_PLAYGROUND',
help:'Mounts the GraphQL Playground - never use this option in production',
action:parsers.booleanParser,
default:false,
},
objectIdSize:{
env:'PARSE_SERVER_OBJECT_ID_SIZE',
help:"Sets the number of characters in generated object id's, default 10",
action:parsers.numberParser('objectIdSize'),
default:10,
},
passwordPolicy:{
env:'PARSE_SERVER_PASSWORD_POLICY',
help:'Password policy for enforcing password related rules',
action:parsers.objectParser,
},
playgroundPath:{
env:'PARSE_SERVER_PLAYGROUND_PATH',
help:'Mount path for the GraphQL Playground, defaults to /playground',
default:'/playground',
},
port:{
env:'PORT',
help:'The port to run the ParseServer, defaults to 1337.',
action:parsers.numberParser('port'),
default:1337,
},
preserveFileName:{
env:'PARSE_SERVER_PRESERVE_FILE_NAME',
help:'Enable (or disable) the addition of a unique hash to the file names',
"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,
},
scheduledPush:{
env:'PARSE_SERVER_SCHEDULED_PUSH',
help:'Configuration for push scheduling, defaults to false.',
action:parsers.booleanParser,
default:false,
},
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,
},
serverCloseComplete:{
env:'PARSE_SERVER_SERVER_CLOSE_COMPLETE',
help:'Callback when server has closed',
},
serverStartComplete:{
env:'PARSE_SERVER_SERVER_START_COMPLETE',
help:'Callback when server has started',
},
serverURL:{
env:'PARSE_SERVER_URL',
help:'URL to your parse server with http:// or https://.',
required:true,
},
sessionLength:{
env:'PARSE_SERVER_SESSION_LENGTH',
help:'Session duration, in seconds, defaults to 1 year',
action:parsers.numberParser('sessionLength'),
default:31536000,
},
silent:{
env:'SILENT',
help:'Disables console output',
action:parsers.booleanParser,
},
startLiveQueryServer:{
env:'PARSE_SERVER_START_LIVE_QUERY_SERVER',
help:'Starts the liveQuery server',
action:parsers.booleanParser,
},
userSensitiveFields:{
env:'PARSE_SERVER_USER_SENSITIVE_FIELDS',
help:
'Personally identifiable information fields in the user table the should be removed for non-authorized users. Deprecated @see protectedFields',
action:parsers.arrayParser,
},
verbose:{
env:'VERBOSE',
help:'Set the logging to verbose',
action:parsers.booleanParser,
},
verifyUserEmails:{
env:'PARSE_SERVER_VERIFY_USER_EMAILS',
help:'Enable (or disable) user email validation, defaults to false',
'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.',
"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 5 * 1000 ms (5 seconds).",
'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.',
action:parsers.objectParser,
},
logLevel:{
env:'PARSE_LIVE_QUERY_SERVER_LOG_LEVEL',
help:
'This string defines the log level of the LiveQuery server. We support VERBOSE, INFO, ERROR, NONE, defaults to INFO.',
},
masterKey:{
env:'PARSE_LIVE_QUERY_SERVER_MASTER_KEY',
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.',
},
port:{
env:'PARSE_LIVE_QUERY_SERVER_PORT',
help:'The port to run the LiveQuery server, defaults to 1337.',
action:parsers.numberParser('port'),
default:1337,
},
pubSubAdapter:{
env:'PARSE_LIVE_QUERY_SERVER_PUB_SUB_ADAPTER',
help:'LiveQuery pubsub adapter',
action:parsers.moduleOrObjectParser,
},
redisOptions:{
env:'PARSE_LIVE_QUERY_SERVER_REDIS_OPTIONS',
help:"parse-server's LiveQuery redisOptions",
action:parsers.objectParser,
},
redisURL:{
env:'PARSE_LIVE_QUERY_SERVER_REDIS_URL',
help:"parse-server's LiveQuery redisURL",
},
serverURL:{
env:'PARSE_LIVE_QUERY_SERVER_SERVER_URL',
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.',
},
websocketTimeout:{
env:'PARSE_LIVE_QUERY_SERVER_WEBSOCKET_TIMEOUT',
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).',
'An array of paths for which the feature should be enabled. The mount path must not be included, for example instead of `/parse/functions/myFunction` specifiy `functions/myFunction`. The entries are interpreted as regular expression, for example `functions/.*` matches all functions, `jobs/.*` matches all jobs, `classes/.*` matches all classes, `.*` matches all paths.',
action:parsers.arrayParser,
default:[],
},
ttl:{
env:'PARSE_SERVER_EXPERIMENTAL_IDEMPOTENCY_TTL',
help:
'The duration in seconds after which a request record is discarded from the database, defaults to 300s.',