Skip to content

Commit

Permalink
Make requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lg committed Dec 14, 2021
1 parent ce557eb commit 2776da3
Show file tree
Hide file tree
Showing 6 changed files with 13,217 additions and 28 deletions.
4 changes: 2 additions & 2 deletions docs/delegators/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
<!---
order: false
parent:
order: 4
---
--->

# Delegators

Expand Down
12 changes: 6 additions & 6 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ order: 2

# Installation

This guide will explain how to install the `gaiad` binary and run the cli.
This guide will explain how to install the `gaiad` binary and run the cli. With this binary installed on a server, you can participate on the mainnet as either a [Full Node](./hub-tutorials/join-mainnet.md) or a [Validator](../validators/validator-setup.md).

## Build Requirements

Expand Down Expand Up @@ -32,23 +32,23 @@ sudo apt-get install -y make gcc
**Go 1.16+** or later is required for the Cosmos SDK.
:::

Install Go one of two ways. Check out the [official docs](https://golang.org/doc/install) and go installer for the correct download for your operating system. Alternatively, you can install Go yourself from the command line. Detailed below are standard default installation locations, but feel free to customize.
We suggest the following two ways to install Go. Check out the [official docs](https://golang.org/doc/install) and Go installer for the correct download for your operating system. Alternatively, you can install Go yourself from the command line. Detailed below are standard default installation locations, but feel free to customize.

**[Go Binary Downloads](https://go.dev/dl/)**

**Ubuntu:**

At the time of this writing, the latest release is `1.16.7`. We're going to download the tarball, extract it to `/usr/local`, and export `GOROOT` to our `$PATH`
At the time of this writing, the latest release is `1.17.4`. We're going to download the tarball, extract it to `/usr/local`, and export `GOROOT` to our `$PATH`
```bash
curl -OL https://golang.org/dl/go1.16.7.linux-amd64.tar.gz
curl -OL https://golang.org/dl/go1.17.4.linux-amd64.tar.gz

sudo tar -C /usr/local -xvf go1.16.7.linux-amd64.tar.gz
sudo tar -C /usr/local -xvf go1.17.4.linux-amd64.tar.gz

export PATH=$PATH:/usr/local/go/bin

```

Remember to add `GOPATH` to your `$PATH` environment variable. If you're not sure where that is, run `go env GOPATH`. This will allow us to run the `gaiad` binary in the next step.
Remember to add `GOPATH` to your `$PATH` environment variable. If you're not sure where that is, run `go env GOPATH`. This will allow us to run the `gaiad` binary in the next step. If you're not sure how to set your `$PATH` take a look at [these instructions](https://superuser.com/questions/284342/what-are-path-and-other-environment-variables-and-how-can-i-set-or-use-them).

```bash
export PATH=$PATH:$(go env GOPATH)/bin
Expand Down
4 changes: 2 additions & 2 deletions docs/hub-overview/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
<!---
order: false
parent:
order: 1
---
--->

# Cosmos Hub

Expand Down
6 changes: 3 additions & 3 deletions docs/hub-tutorials/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
<!---
order: false
parent:
order: 3
---
--->

# Hub Tutorials
# Gaia Tutorials

This folder contains tutorials related to the `gaia` application.

Expand Down
Loading

0 comments on commit 2776da3

Please sign in to comment.