info_tfgrid/docs/hero_mdbook_fullvm.md

141 lines
5.0 KiB
Markdown
Raw Normal View History

<h1>Hero and mdbook on a Full VM</h1>
<h2>Table of Contents</h2>
- [Introduction](#introduction)
- [Setting the Full VM](#setting-the-full-vm)
2024-02-15 19:55:04 +00:00
- [Remote Explorer Access](#remote-explorer-access)
2024-03-23 17:14:21 +00:00
- [Set the SSH Key Pair](#set-the-ssh-key-pair)
- [Install hero, crysallib and V](#install-hero-crysallib-and-v)
- [Use Hero to Generate mdbooks](#use-hero-to-generate-mdbooks)
2024-03-23 18:40:01 +00:00
- [Troubleshooting](#troubleshooting)
- [Fix the error: "cli execution error: Cannot pull repo: /root/code/git.ourworld.tf/tfgrid/info\_tfgrid because there are changes in the dir."](#fix-the-error-cli-execution-error-cannot-pull-repo-rootcodegitourworldtftfgridinfo_tfgrid-because-there-are-changes-in-the-dir)
- [Fix: Git hangs at "Cloning into..."](#fix-git-hangs-at-cloning-into)
***
## Introduction
2024-02-15 19:55:04 +00:00
In this tutorial, we show all the steps to deploy an mdbook with the [hero](https://github.com/freeflowuniverse/crystallib/tree/development/cli/hero) tool.
2024-02-15 19:55:04 +00:00
For this guide, we show an example using the mdbook from the repository [info_tfgrid](https://git.ourworld.tf/tfgrid/info_tfgrid). This setup can be done locally or on a VM. Note that it should be run as root.
2024-02-15 19:55:04 +00:00
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 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.
2024-03-23 18:40:01 +00:00
We include some troubleshooting tips from testing the installation.
2024-02-15 19:55:04 +00:00
## Setting the Full VM
We start by deploying a full VM with WireGuard on the TFGrid. We also set an SSH tunnel.
- Deploy a full VM with WireGuard on the TFGrid
2024-03-23 17:14:21 +00:00
- Set an SSH tunnel, on port 5173 for both local and VM
```
2024-03-23 17:14:21 +00:00
ssh -4 -L 5173:127.0.0.1:5173 root@10.20.4.2
```
2024-02-15 19:55:04 +00:00
Instead of working on the SSH tunnel terminal window, we will be using the remote explorer feature of a source-code editor.
2024-02-15 19:55:04 +00:00
### Remote Explorer Access
You can use the remote explorer feature of both [VSCode](https://marketplace.visualstudio.com/items?itemName=ms-vscode.remote-repositories) and [VSCodium](https://open-vsx.org/extension/jeanp413/open-remote-ssh) to manage the mdbook.
- Open the window `Remote Explorer`, click on `Add New` and write the following in the SSH config file:
```
Host 10.20.4.2
HostName 10.20.4.2
User root
```
- Click on `Connect to Host`
- Open the main `/root` directory
- Right-click on the main window of the directory and select `Open in Integrated Terminal`
2024-03-23 17:14:21 +00:00
- Update and prepare the VM
```
apt update && apt install curl -y && apt install openssh-client -y
```
## Set the SSH Key Pair
- Generate an SSH key pair
- To make it work with info_tfgrid, use books for the filename
```
ssh-keygen # save in /root/.ssh/books
```
- Note the public key
```
cat ~/.ssh/books.pub
```
2024-03-26 14:26:32 +00:00
- Add the SSH public key on [git.ourworld.tf](https://git.ourworld.tf/user/settings/keys) and [github](https://github.com/settings/keys)
2024-03-23 17:14:21 +00:00
- Optional: on git.ourworld.tf, verify the key
```
echo -n 'token' | ssh-keygen -Y sign -n gitea -f /path/to/private/key
```
- Start the ssh agent
```
eval $(ssh-agent)
```
- Add private key to the agent
```
ssh-add /root/.ssh/books
```
## Install hero, crysallib and V
```
curl https://raw.githubusercontent.com/freeflowuniverse/crystallib/development/scripts/build_hero.sh > /tmp/build_hero.sh
bash /tmp/build_hero.sh
```
## Use Hero to Generate mdbooks
2024-03-27 19:08:46 +00:00
- Download the repository
2024-03-23 17:14:21 +00:00
```
hero mdbook -u https://git.ourworld.tf/tfgrid/info_tfgrid/src/branch/main/heroscript/bookname -gp
```
2024-03-27 19:08:46 +00:00
- Build the book
```
hero mdbook -u https://git.ourworld.tf/tfgrid/info_tfgrid/src/branch/main/heroscript/bookname
```
- Open the mdbook on your local browser:
2024-03-23 17:14:21 +00:00
```
hero mdbook -u https://git.ourworld.tf/tfgrid/info_tfgrid/src/branch/main/heroscript/bookname -o
```
> Note: In both cases, make sure to replace **bookname** by the name of your book, e.g. test.
2024-03-29 17:58:09 +00:00
To see the mdbook online on a local browser (via the file **index.html**), run the following command and open a browser with the URL **localhost:5173**. Make sure to replace `<book_name>` with the name of the book.
2024-03-23 17:14:21 +00:00
```
2024-03-29 17:58:09 +00:00
pushd /root/hero/www/info/<book_name>/; python3 -m http.server 5173; popd;
2024-03-23 17:14:21 +00:00
```
2024-02-15 19:55:04 +00:00
2024-03-23 18:40:01 +00:00
## Troubleshooting
### Fix the error: "cli execution error: Cannot pull repo: /root/code/git.ourworld.tf/tfgrid/info_tfgrid because there are changes in the dir."
Remove then rerun the command
```
rm -r /root/code/git.ourworld.tf/tfgrid/info_tfgrid
```
### Fix: Git hangs at "Cloning into..."
Run this command to fix this issue:
```
git config --global credential.provider generic
```
If it happens another time, you can try to download it manually:
```
mkdir -p /root/code/git.ourworld.tf/tfgrid && cd $_
git clone https://git.ourworld.tf/tfgrid/info_tfgrid
```