Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Add tutorial links to install doc #20051

Merged
merged 2 commits into from
Apr 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions website/content/docs/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ a copy of [`git`](https://www.git-scm.com/) in your `PATH`.

Clone the Vault repository from GitHub into your `GOPATH`:

```shell
```shell-session
$ mkdir -p $GOPATH/src/github.com/hashicorp && cd $_
$ git clone https://github.com/hashicorp/vault.git
$ cd vault
Expand All @@ -57,15 +57,15 @@ $ cd vault
Bootstrap the project. This will download and compile libraries and tools needed
to compile Vault:

```shell
```shell-session
$ make bootstrap
```

Build Vault for your current system and put the binary in `./bin/` (relative to
the git checkout). The `make dev` target is just a shortcut that builds `vault`
for only your local build environment (no cross-compiled targets).

```shell
```shell-session
$ make dev
```

Expand All @@ -79,5 +79,13 @@ on your `PATH` to avoid receiving an error that Vault is not found.
$ vault -h
```

## Tutorial

Following tutorials provide some guidance on production cluster deployment:

- [Day One Preperation](/vault/tutorials/day-one-raft)
- [Recommended Patterns](/vault/tutorials/recommended-patterns)


[learn-vault-install]: /vault/tutorials/getting-started/getting-started-install
[learn-vault-dev-server]: /vault/tutorials/getting-started/getting-started-dev-server