Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update readme with go install option #11

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# world-engine-cli
world-engine-cli

temporary testing notes:

Expand All @@ -20,9 +19,21 @@ 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 available release:
```
go install pkg.world.dev/world-cli@latest
```

- Install specific release tag:
```
go install pkg.world.dev/world-cli@<release tag>
```

## Curl

- Install latest available release:
```
Expand Down