From 2d3a1222f4825506d3fcbee833db290838098146 Mon Sep 17 00:00:00 2001 From: Ethan Holz Date: Thu, 26 Oct 2023 15:23:58 -0500 Subject: [PATCH] feat(getting-started): added the supported clients --- src/content/docs/getting-started.mdx | 52 ++++++++++++++++++++++------ 1 file changed, 42 insertions(+), 10 deletions(-) diff --git a/src/content/docs/getting-started.mdx b/src/content/docs/getting-started.mdx index f3af887..0e243e7 100644 --- a/src/content/docs/getting-started.mdx +++ b/src/content/docs/getting-started.mdx @@ -13,19 +13,51 @@ Use our bootstrap scripts! Follow our Quick Start to get started! 1. Download and initialize the command line utility from our releases to your dev machine. - ```bash - curl -L https://releases.grlx.dev/linux/amd64/latest/grlx > grlx && chmod +x grlx - ./grlx init - ``` + + + ```bash + curl -L https://releases.grlx.dev/linux/amd64/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + + ```bash + curl -L https://releases.grlx.dev/linux/368/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + + ```bash + curl -L https://releases.grlx.dev/linux/arm/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + + ```bash + curl -L https://releases.grlx.dev/linux/arm64/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + - - - ```bash - curl -L https://releases.grlx.dev/darwin/amd64/latest/grlx > grlx && chmod +x grlx - ./grlx init - ``` + + + + ```bash + curl -L https://releases.grlx.dev/darwin/amd64/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + + ```bash + curl -L https://releases.grlx.dev/darwin/arm64/latest/grlx > grlx && chmod +x grlx + ./grlx init + ``` + + + You'll be asked some questions, such as which interface the `farmer` is listening on, and which ports to use for communication. Set the interface to the domain name or IP address of the `farmer`. Once configured, the CLI prints out your administrator public key, which you'll need for the next step!