deephaven / deephaven-docs-community

Source code for Community docs on the deephaven.io website.
Apache License 2.0
0 stars 5 forks source link

feat: Add console scripts to start Deephaven from the command line #185

Closed deephaven-internal closed 2 months ago

deephaven-internal commented 3 months ago

This issue was auto-generated

PR: https://github.com/deephaven/deephaven-core/pull/5275 Author: mofojed

Original PR Body

Examples: deephaven server: Starts up Deephaven server on port 8080 with a random key and opens the web UI. deephaven server --port 9999: Starts up Deephaven on port 9999. deephaven server --jvm-args="-Ddeephaven.dataDir=/tmp/deephaven": Starts up Deephaven with /tmp/deephaven as the data directory. deephaven server --port 9999 --jvm-args="-Ddeephaven.dataDir=/tmp/deephaven-data -Ddeephaven.console.disable=true": Starts up Deephaven on port 9999, using /tmp/deephaven as the data directory and the console disabled. deephaven --help: Prints help about what commands are available deephaven server --help: Prints help about the server comand