Update docs/hero_mdbook_fullvm.md

added line to install cargo
This commit is contained in:
mik-tf 2024-02-22 15:05:49 +00:00
parent 0bb32748b9
commit dac4534d99

View File

@ -5,7 +5,7 @@
- [Introduction](#introduction)
- [Setting the Full VM](#setting-the-full-vm)
- [Remote Explorer Access](#remote-explorer-access)
- [Install cargo](#install-cargo)
- [Install cargo and mdbook](#install-cargo-and-mdbook)
- [Install redis](#install-redis)
- [Install pkg-config, gcc and libssl](#install-pkg-config-gcc-and-libssl)
- [Set Hero](#set-hero)
@ -23,13 +23,21 @@ For this guide, we show an example using the mdbook from the repository [info_tf
We show the steps for a full VM deployed on the TFGrid with WireGuard. We use `10.20.4.2` as a WireGuard IP address. Adjust according to your own setup.
We will be using SSH to connect to the VM and we will access the mdbook output on a local browser. To manage the mdbook files, we will be using the remote explorer feature of either VSCodium or VSCode.
We will be using SSH to connect to the VM and to create an SSH tunnel between the local machine and the VM. This will allow the mdbook output to be displayed on a local browser.
To manage the mdbook files, we will be using the remote explorer feature of either VSCodium or VSCode.
## Setting the Full VM
We start by deploying a full VM with WireGuard on the TFGrid.
We start by deploying a full VM with WireGuard on the TFGrid. We also set an SSH tunnel.
To connect to the VM, we will be using a remote explorer.
- Deploy a full VM with WireGuard on the TFGrid
- Set an SSH tunnel, on port 3333 for both local and VM
```
ssh -4 -L 3333:127.0.0.1:3333 root@10.20.4.2
```
Instead of working on the SSH tunnel terminal window, we will be using the remote explorer feature of a source-code editor.
### Remote Explorer Access
@ -49,7 +57,7 @@ You can use the remote explorer feature of both [VSCode](https://marketplace.vis
apt update && apt upgrade -y
```
### Install cargo
### Install cargo and mdbook
Once you install cargo, all mdbook dependencies will be installed via the hero script.
@ -61,6 +69,10 @@ Once you install cargo, all mdbook dependencies will be installed via the hero s
```
source "$HOME/.cargo/env"
```
- Install mdbook
```
cargo install mdbook
```
### Install redis
@ -120,7 +132,7 @@ Once you install cargo, all mdbook dependencies will be installed via the hero s
- To serve on your local machine, make sure to use the same part as the one set in your SSH tunnel (here it's port 3333)
```
mdbook serve --hostname 0.0.0.0 --port 3333
mdbook serve --port 3333
```
- To see the mdbook live, open a browser on the local machine and go to localhost:3333