Skip to content

Commit

Permalink
README for goreleases install sources
Browse files Browse the repository at this point in the history
  • Loading branch information
robinovitch61 committed Jun 26, 2022
1 parent 467267f commit b017a60
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,28 @@ active development. Expect near term improvements. Feature requests in the form

## Installation

With [Go installed on your machine](https://go.dev/doc/install), install `wander` with
### homebrew

```shell
brew install robinovitch61/tap/wander
````

### using [go installed on your machine](https://go.dev/doc/install)

```shell
go install github.com/robinovitch61/wander@latest
```

Alternatively, clone this repo, build from source with `cd <cloned_repo> && go build`
, then move the binary to somewhere accessible in your `PATH`, e.g. `mv ./wander /usr/local/bin`.
### download from github

Download the relevant asset for your operating system from
the [latest Github release](https://github.com/robinovitch61/wander/releases). Unpack it, then move the binary to
somewhere accessible in your `PATH`, e.g. `mv ./wander /usr/local/bin`.

### build from source

Clone this repo, build from source with `cd <cloned_repo> && go build`,
then move the binary to somewhere accessible in your `PATH`, e.g. `mv ./wander /usr/local/bin`.

## Usage

Expand Down Expand Up @@ -73,7 +87,8 @@ NOMAD_ADDR=http://localhost:4646 NOMAD_TOKEN="blank" wander
such that anyone on the internal network can `ssh -p <your-port> <your-host>` and immediately access `wander` without
installing or configuring anything.

Optionally, users can pass in their own nomad token with `ssh -p <port> <host> -t <token>`. The `-t` argument does not stand for
Optionally, users can pass in their own nomad token with `ssh -p <port> <host> -t <token>`. The `-t` argument does not
stand for
token - it forces `ssh` to allocate a pty.

Serve the ssh app with `wander serve`.
Expand Down

0 comments on commit b017a60

Please sign in to comment.