Update content previously from wild-cloud repo.

This commit is contained in:
2025-08-31 14:32:02 -07:00
parent 037ca24e05
commit 03284765d2
7 changed files with 493 additions and 24 deletions

View File

@@ -10,13 +10,17 @@ series_order: 4
## Your operator machine
Your operator machine is your main workspace (I think of it more as play, actually) for managing your wild cloud. You will install the Wild Cloud software on your operator machine and use it to setup and manage everything related to your wild cloud.
Your operator machine is the computer you manage your wild cloud with. Below, we will install the Wild Cloud software on your operator machine.
## Download the Wild Cloud software onto your operator machine
Your operator machine should be a [Linux](/learning/linux/) machine on your LAN. It's helpful if it has a nice big hard drive you can use for backing up your wild cloud data.
Your operator machine should be a [Linux](/learning/linux/) machine on your LAN. It's helpful if it has a nice big hard drive you can use for backing up your cloud data.
## Install the Wild Cloud software
{{< gitea server="https://git.civilsociety.dev" repo="CSTF/wild-cloud" showThumbnail=true >}}
{{< go-deeper >}}
We recognize that this part of the guide requires more knowledge of `git` and `bash`. We plan to create a `wild` CLI and perhaps even a GUI setup before wider release. For now, we are prototyping our (fully functional) POC by using scripts from this Wild Cloud repo.
{{< /go-deeper >}}
Download the Wild Cloud software using git:
```bash
git clone https://git.civilsociety.dev/CSTF/wild-cloud.git
@@ -32,3 +36,21 @@ Install dependencies:
```bash
scripts/setup-utils.sh
```
## Create your Wild Cloud Home
Now that you have the Wild Cloud software installed, we are going to create a directory that will hold everything about your personal wild cloud. We call this your "Wild Cloud Home".
{{< definition >}}
Your **Wild Cloud Home** is the directory where all of your wild cloud data will be stored. This includes your configuration files, data files, and any other files related to your wild cloud.
{{< /definition >}}
You can put it in any directory. Here we show an example if you want to make a directory named `my-wild-cloud` in your home directory.
```bash
mkdir -p ~/my-wild-cloud
cd ~/my-wild-cloud
wild-cloud-scaffold
```
That's it! Your wild cloud operator machine is ready to go! Most of the rest of the instructions in this guide will assume you are working within this directory.