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
I was under the impression that to do substring matching, the tool would
need asterisks via regex in the file. That didn't work. I found an
example of another repo using this tool and looked at their lychee
ignore file to find no asterisks.
This past weekend's runs failed on links that contained localhost and
docs.deephaven.io. This should fix that.
There is a legit broken link in the run that will be fixed as part of
this PR as well.
Copy file name to clipboardexpand all lines: README.md
+11-10
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ The Deephaven server can be installed and instantiated [from Docker](#from-docke
55
55
This is the easiest way to get started with Deephaven. For complete instructions, see our [quickstart for Docker](https://deephaven.io/core/docs/getting-started/quickstart/). The table below shows installation dependencies.
56
56
57
57
| Dependency | Version | OS | Required/Recommended |
Users who wish to use Python but not Docker should use [pip-installed Deephaven](https://deephaven.io/core/docs/tutorials/quickstart-pip/). For users with Windows operating systems, WSL is **not** required to use Deephaven this way.
112
+
Users who wish to use Python but not Docker should use [pip-installed Deephaven](https://deephaven.io/core/docs/getting-started/pip-install/). For users with Windows operating systems, WSL is **not** required to use Deephaven this way.
113
113
114
114
```sh
115
115
pip install --upgrade pip setuptools wheel
@@ -151,7 +151,7 @@ docker run hello-world
151
151
```
152
152
153
153
> **_NOTE:_** Internally, the Java build process will use [Gradle Auto Provisioning](https://docs.gradle.org/current/userguide/toolchains.html#sec:provisioning)
154
-
to download and use the appropriate Java version for building and testing.
154
+
> to download and use the appropriate Java version for building and testing.
155
155
156
156
> **_NOTE:_** On Windows, all commands must be run inside a WSL 2 terminal.
157
157
@@ -182,13 +182,14 @@ cd deephaven-core
182
182
#### Debugging
183
183
184
184
You can debug the server by adding the `-Pdebug` flag, and then attaching a debugger to port 5005. This can be used in conjunction with other flags. For example, if you wanted to debug a server and startup with Groovy:
185
+
185
186
```sh
186
187
./gradlew server-jetty-app:run -Pgroovy -Pdebug
187
188
```
188
189
189
190
## Get the authentication key
190
191
191
-
Deephaven, by default, uses [pre-shared key authentication](https://deephaven.io/core/docs/how-to-guides/authentication/auth-psk/) to authenticate against unauthorized access.
192
+
Deephaven, by default, uses [pre-shared key authentication](https://deephaven.io/core/docs/how-to-guides/authentication/auth-psk/) to authenticate against unauthorized access.
192
193
193
194
### Deephaven run from Docker
194
195
@@ -269,12 +270,12 @@ t = left.join(right, "DeptID", "DeptName, DeptTelephone=Telephone")
0 commit comments