We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f7dd2 commit 28af4c7Copy full SHA for 28af4c7
docs/hydra/self-hosted/quickstart.mdx
@@ -13,6 +13,7 @@ You do not want to self-host? Try
13
14
```mdx-code-block
15
import CodeFromRemote from "@theme/CodeFromRemote"
16
+import { useLatestRelease } from '@site/src/hooks'
17
```
18
19

@@ -25,9 +26,14 @@ import CodeFromRemote from "@theme/CodeFromRemote"
25
26
27
To get started, clone the Ory Hydra locally:
28
-```
29
+```mdx-code-block
30
+import CodeBlock from '@theme/CodeBlock'
31
+
32
+<CodeBlock className="language-shell">{`
33
git clone https://github.com/ory/hydra.git
34
cd hydra
35
+git checkout ${useLatestRelease('hydra')}`}
36
+</CodeBlock>
37
38
39
Run the following command(s) to start the OAuth2 server:
0 commit comments