From 43ceadec973ed229f259cef56d0feb214c087282 Mon Sep 17 00:00:00 2001 From: Tyler <48813565+technicallyty@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:16:19 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a9a4cb6..1ee7d50 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ # world-engine-cli -world-engine-cli temporary testing notes: @@ -24,6 +23,16 @@ Test with these commands; in the project dir run: The simplest, cross-platform way to get started is to download `world-cli` from [GitHub Releases](https://github.com/Argus-Labs/world-cli/releases) and place the executable file in your PATH, or using installer script below: +- Install latest with `go install` +``` +go install pkg.world.dev/world-cli@latest +``` + +- Install specific release tag with `go install` +``` +go install pkg.world.dev/world-cli@ +``` + - Install latest available release: ``` curl https://install.world.dev/cli! | bash From 066fe41254006695b011b5e333d909329000d424 Mon Sep 17 00:00:00 2001 From: tyler <48813565+technicallyty@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:19:47 -0700 Subject: [PATCH 2/3] simplify further --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1ee7d50..8862d47 100644 --- a/README.md +++ b/README.md @@ -19,20 +19,22 @@ Test with these commands; in the project dir run: 1. `go build` 2. `./world create myproject` -## Install Pre-compiled Binaries +## Installation -The simplest, cross-platform way to get started is to download `world-cli` from [GitHub Releases](https://github.com/Argus-Labs/world-cli/releases) and place the executable file in your PATH, or using installer script below: +## Go Install -- Install latest with `go install` +- Install latest available release: ``` go install pkg.world.dev/world-cli@latest ``` -- Install specific release tag with `go install` +- Install specific release tag: ``` go install pkg.world.dev/world-cli@ ``` +## Curl + - Install latest available release: ``` curl https://install.world.dev/cli! | bash From a61448706e4b15240a759e204213196bacc8ebfe Mon Sep 17 00:00:00 2001 From: tyler <48813565+technicallyty@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:20:01 -0700 Subject: [PATCH 3/3] ordering --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8862d47..a6b098c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Test with these commands; in the project dir run: 1. `go build` 2. `./world create myproject` -## Installation +# Installation ## Go Install