Skip to content

Commit

Permalink
fix(docs): update readme links (#325)
Browse files Browse the repository at this point in the history
* fix(docs): update readme links
  • Loading branch information
joe-prosser authored Oct 15, 2024
1 parent a5c6018 commit d6fc84c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://reinfer.io">
<a href="https://reinfer.dev">
<img alt="reinfer-cli" src="https://user-images.githubusercontent.com/797170/86259580-19d33180-bbb4-11ea-9909-3c31251345f1.png" width="128">
</a>
</p>
Expand All @@ -19,14 +19,14 @@
</p>

<p align="center">
<a href="https://reinfer.io/docs">
<a href="https://reinfer.dev/docs">
API Documentation
</a> | <a href="https://reinfer.io">
</a> | <a href="https://reinfer.dev">
Website
</a>
</p>

`re` is the official command line interface for [Re:infer](https://reinfer.io). It simplifies managing resources, such as sources and datasets, as well as importing or exporting communications data. Additionally, `re` maintains multiple contexts, making it easy to switch between multiple authentication tokens for different users (and endpoints for multiple clusters if needed).
`re` is the official command line interface for [Re:infer](https://reinfer.dev). It simplifies managing resources, such as sources and datasets, as well as importing or exporting communications data. Additionally, `re` maintains multiple contexts, making it easy to switch between multiple authentication tokens for different users (and endpoints for multiple clusters if needed).

#### API Library

Expand All @@ -53,13 +53,13 @@ The [api](/api) directory contains a Rust client library for reinfer which can b

Statically linked binaries with no dependencies are provided for selected platforms:

- [Linux (x86_64-unknown-linux-musl)](https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/0.34.0/re)
- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.34.0/re)
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.34.0/re.exe)
- [Linux (x86_64-unknown-linux-musl)](https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/0.34.0/re)
- [macOS (x86_64-apple-darwin)](https://reinfer.dev/public/cli/bin/x86_64-apple-darwin/0.34.0/re)
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/0.34.0/re.exe)

### Debian / Ubuntu

You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.34.0_amd64.deb).
You can download a `.deb` package [here](https://reinfer.dev/public/cli/debian/reinfer-cli_0.34.0_amd64.deb).

### From Source

Expand Down Expand Up @@ -125,7 +125,7 @@ Even better to use contexts, see further below.

#### Different Clusters

By default, the endpoint for all commands is `https://reinfer.io`. This can be overidden using `--endpoint`, e.g.
By default, the endpoint for all commands is `https://reinfer.dev`. This can be overidden using `--endpoint`, e.g.

```
re --endpoint http://localhost:8000 --token $REINFER_TOKEN get datasets
Expand All @@ -136,7 +136,7 @@ re --endpoint http://localhost:8000 --token $REINFER_TOKEN get datasets
Contexts help avoid having to manually specify the token and endpoint with every command. A _context_ is composed of

- The authentication token (which user?)
- The Re:infer cluster endpoint to talk to, typically `https://reinfer.io`
- The Re:infer cluster endpoint to talk to, typically `https://reinfer.dev`
- (Optional) An HTTP proxy to use for all requests
- A memorable name which serves as an identifier for the "context"

Expand All @@ -145,7 +145,7 @@ Commands for managing _contexts_ are under `re config` and allow one to create,
When creating the very first context, this will be set as the active one

```
➜ re config add --name production --endpoint https://reinfer.io/
➜ re config add --name production --endpoint https://reinfer.dev/
I A new context `production` will be created.
* Enter API token [none]: MYSUPERSECRETTOKEN
W Be careful, API tokens are stored in cleartext in /home/marius/.config/reinfer/contexts.json.
Expand Down
8 changes: 4 additions & 4 deletions scripts/check-versions
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ expect_link() {
fi
}

expect_link "https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/$VERSION/re"
expect_link "https://reinfer.io/public/cli/bin/x86_64-apple-darwin/$VERSION/re"
expect_link "https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/$VERSION/re.exe"
expect_link "https://reinfer.io/public/cli/debian/reinfer-cli_${VERSION}_amd64.deb"
expect_link "https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/$VERSION/re"
expect_link "https://reinfer.dev/public/cli/bin/x86_64-apple-darwin/$VERSION/re"
expect_link "https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/$VERSION/re.exe"
expect_link "https://reinfer.dev/public/cli/debian/reinfer-cli_${VERSION}_amd64.deb"

0 comments on commit d6fc84c

Please sign in to comment.