You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
program.option('--appId [appId]','the app Id of the app you would like to manage.');
15
15
program.option('--masterKey [masterKey]','the master key of the app you would like to manage.');
16
+
program.option('--masterKeyTtl [masterKeyTtl]','the master key ttl of the app you would like to manage.');
16
17
program.option('--serverURL [serverURL]','the server url of the app you would like to manage.');
17
18
program.option('--graphQLServerURL [graphQLServerURL]','the GraphQL server url of the app you would like to manage.');
18
19
program.option('--dev','Enable development mode. This will disable authentication and allow non HTTPS connections. DO NOT ENABLE IN PRODUCTION SERVERS');
|`apps`| Array<Object>| no | - |`[{ ... }, { ... }]`| The apps that are configured for the dashboard. |
132
+
|`apps.appId`| String | yes | - |`"myAppId"`| The Application ID for your Parse Server instance. |
133
+
|`apps.masterKey`| String \| Function | yes | - |`"exampleMasterKey"`, `() => "exampleMasterKey"`| The master key for full access to Parse Server. It can be provided directly as a String or as a Function returning a String. |
134
+
|`apps.masterKeyTtl`| Number | no | - |`3600`| Time-to-live (TTL) for the master key in seconds. This defines how long the master key is cached before the `masterKey` function is re-triggered. |
135
+
|`apps.serverURL`| String | yes | - |`"http://localhost:1337/parse"`| The URL where your Parse Server is running. |
136
+
|`apps.appName`| String | no | - |`"MyApp"`| The display name of the app in the dashboard. |
|`type`| String | - | No | Must be `"keyValue"`. |
939
+
|`key`| String | - | No | The key text to display. |
940
+
|`value`| String | - | No | The value text to display. |
941
+
|`url`| String |`undefined`| Yes | The URL that will be opened in a new browser tab when clicking on the value text. It can be set to an absolute URL or a relative URL in which case the base URL is `<PROTOCOL>://<HOST>/<MOUNT_PATH>/`. |
942
+
|`isRelativeUrl`| Boolean |`false`| Yes | Set this to `true` when linking to another dashboard page, in which case the base URL for the relative URL will be `<PROTOCOL>://<HOST>/<MOUNT_PATH>/apps/<APP_NAME>/`. |
|`title`| String | No | The title to display in the expandable headline. |
1124
+
|`cloudCodeFunction`| String | No | The Cloud Code Function to call which receives the selected object in the data browser and returns the response to be displayed in the sub-panel. |
0 commit comments