Skip to content

Commit

Permalink
docs: add docs for new installers
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeDawkins committed Mar 10, 2021
1 parent 9a471c0 commit 40be38c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rover graph push --schema ./path-to-valid-schema test@cats

```console
$ rover --help
Rover 0.0.2
Rover 0.0.3

Rover - Your Graph Companion
Read the getting started guide: https://go.apollo.dev/r/start
Expand Down Expand Up @@ -102,12 +102,25 @@ This repo is organized as a [`cargo` workspace], containing several related proj
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | sh
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh
```

#### Windows PowerShell installer

```bash
iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```


#### npm installer

Rover is distributed on npm for easy integration with your JavaScript projects.
Expand Down
11 changes: 11 additions & 0 deletions docs/source/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,23 @@ The Rover CLI is available for Linux, Mac, and Windows.
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | sh
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh
```
#### Windows PowerShell installer

```bash
iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

#### npm installer

Rover is distributed on npm for easy integration with your JavaScript projects.
Expand Down

0 comments on commit 40be38c

Please sign in to comment.