Skip to content
Merged
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 src/Options/Definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ module.exports.ParseServerOptions = {
"help": "Key for Unity and .Net SDK"
},
"restAPIKey": {
"env": "PARSE_SERVER_REST_APIKEY",
"env": "PARSE_SERVER_REST_API_KEY",
"help": "Key for REST calls"
},
"webhookKey": {
Expand Down
3 changes: 2 additions & 1 deletion src/Options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export interface ParseServerOptions {
javascriptKey: ?string;
/* Key for Unity and .Net SDK */
dotNetKey: ?string;
/* Key for REST calls */
/* Key for REST calls
:ENV: PARSE_SERVER_REST_API_KEY */
restAPIKey: ?string;
/* Key sent with outgoing webhook calls */
webhookKey: ?string;
Expand Down