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
Copy file name to clipboardExpand all lines: Parse-Dashboard/index.js
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,14 @@ program.option('--appName [appName]', 'the name of the app you would like to man
20
20
program.option('--config [config]','the path to the configuration file');
21
21
program.option('--host [host]','the host to run parse-dashboard');
22
22
program.option('--port [port]','the port to run parse-dashboard');
23
+
program.option('--mountPath [mountPath]','the mount path to run parse-dashboard');
23
24
program.option('--allowInsecureHTTP [allowInsecureHTTP]','set this flag when you are running the dashboard behind an HTTPS load balancer or proxy with early SSL termination.');
You can then visit the dashboard in your browser at http://localhost:4040. You may set the hostand port by supplying the --hostand --port options to parse-dashboard. You can use anything you want as the app name, or leave it out in which case the app ID will be used.
19
+
You can then visit the dashboard in your browser at http://localhost:4040. You may set the host, port and mount path by supplying the `--host`, `--port`and `--mountPath` options to parse-dashboard. You can use anything you want as the app name, or leave it out in which case the app ID will be used.
20
20
21
21
If you want to manage multiple apps from the same dashboard, you can start the dashboard with a config file. For example, you could put your info into a file called `parse-dashboard-config.json` and then start the dashboard using `parse-dashboard --config parse-dashboard-config.json`. The file should match the following format:
0 commit comments