Skip to content

Commit

Permalink
Update outdated links (#1246)
Browse files Browse the repository at this point in the history
* docs: change the cloud version links

* fix(website): use correct upstream link

* fix(transactional): change name of var
  • Loading branch information
IgnisDa authored Feb 10, 2025
1 parent bb4db9f commit c320391
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<a href="https://ryot.io" target="_blank">Pro features</a> •
<a href="https://docs.ryot.io" target="_blank">Installation</a> •
<a href="https://docs.ryot.io/configuration" target="_blank">Configuration</a> •
<a href="https://pro.ryot.io/_s/acl_vUMPnPirkHlT" target="_blank">Hosted version</a>
<a href="https://demo.ryot.io/_s/acl_vUMPnPirkHlT" target="_blank">Hosted version</a>
</p>

<br/>
Expand All @@ -44,7 +44,7 @@ about the pro version [here](https://ryot.io).
## 💻 Demo

You can use the demo account on the pro instance using [this
link](https://pro.ryot.io/_s/acl_vUMPnPirkHlT).
link](https://demo.ryot.io/_s/acl_vUMPnPirkHlT).

**NOTE**: The data in this demo account is reset every 24 hours.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You can specify configuration options via environment variables. Each option is
[below](#all-parameters) with what it does and a default (if any).

Ryot serves the final configuration loaded at the `/backend/config` endpoint as JSON
([example](https://pro.ryot.io/backend/config)). Sensitive variables are redacted.
([example](https://demo.ryot.io/backend/config)). Sensitive variables are redacted.

## Important parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/content/guides/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Ryot can be configured to use OpenID Connect (OIDC) for authentication. The foll
environment variables need to be set:

```bash
FRONTEND_URL=https://pro.ryot.io # The URL of your Ryot instance
FRONTEND_URL=https://app.ryot.io # The URL of your Ryot instance
SERVER_OIDC_CLIENT_ID=********
SERVER_OIDC_CLIENT_SECRET=********
SERVER_OIDC_ISSUER_URL=https://accounts.google.com # The URL of your OIDC provider (might end with trailing slash)
Expand Down
2 changes: 1 addition & 1 deletion docs/content/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ webhook URLs follow this format:

```txt
https://<instance_url>/backend/_i/<slug>
https://pro.ryot.io/backend/_i/int_a6cGGXEq6KOI # example
https://app.ryot.io/backend/_i/int_a6cGGXEq6KOI # example
```

!!! warning
Expand Down
4 changes: 2 additions & 2 deletions libs/transactional/emails/PurchaseComplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Link, Text } from "@react-email/components";
import { isString } from "@ryot/ts-utils";
import Layout from "../components/Layout";

const proLink = "https://pro.ryot.io";
const applicationLink = "https://app.ryot.io";

type PurchaseCompleteEmailProps = {
planType: string;
Expand Down Expand Up @@ -37,7 +37,7 @@ const PurchaseCompleteEmail = (props: PurchaseCompleteEmailProps) =>
) : (
<>
Your account has been created on{" "}
<Link href={proLink}>{proLink}</Link> with{" "}
<Link href={applicationLink}>{applicationLink}</Link> with{" "}
{isString(props.details.auth) ? (
`Google using the email ${props.details.auth}. Please login to get started`
) : (
Expand Down

0 comments on commit c320391

Please sign in to comment.