Skip to content

Commit 5aa3fd1

Browse files
committed
feat: add info about pro instance
1 parent 888ed61 commit 5aa3fd1

File tree

6 files changed

+11
-17
lines changed

6 files changed

+11
-17
lines changed

README.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,26 @@
2424
<a href="https://ryot.io/features" target="_blank">Pro features</a> •
2525
<a href="https://docs.ryot.io" target="_blank">Installation</a> •
2626
<a href="https://docs.ryot.io/configuration" target="_blank">Configuration</a> •
27-
<a href="https://app.ryot.io" target="_blank">Hosted version</a>
27+
<a href="https://pro.ryot.io/_s/acl_vUMPnPirkHlT" target="_blank">Hosted version</a>
2828
</p>
2929

3030
<br/>
3131

3232
Ryot (**R**oll **Y**our **O**wn **T**racker), pronounced "riot", aims to be the only self
3333
hosted tracker you will ever need!
3434

35-
## IMPORTANT NOTE FOR `v5.*` USERS
36-
37-
If you were using `v5.*` of Ryot, please read the
38-
[migration guide](https://docs.ryot.io/migration#from-v5-to-v6) for instructions.
39-
4035
## Pro version
4136

4237
Ryot is available in two versions - community and pro. The pro version has additional
43-
features like recommendations, supercharged collections etc. Learn more about the pro
44-
version [here](https://ryot.io/features).
38+
features like profile sharing, recommendations, supercharged collections etc. Learn more
39+
about the pro version [here](https://ryot.io/features).
4540

4641
## 💻 Demo
4742

48-
You can use the demo account on the Ryot website. Login with the username `demo` and
49-
password `demo-password`. This instance is automatically deployed from the latest release.
43+
You can use the demo account on the pro instance using [this
44+
link](https://pro.ryot.io/_s/acl_vUMPnPirkHlT).
5045

51-
**NOTE**: The data in this demo account is not recommended to be used for any production
52-
usage. Please create a new account for that.
46+
**NOTE**: The data in this demo account is reset every 24 hours.
5347

5448
## 📝 ELI5
5549

docs/content/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You can specify configuration options via environment variables or via files (lo
44
`config/ryot.json`, `config/ryot.toml`, `config/ryot.yaml`). They should be present in `/home/ryot/config/ryot.<ext>`.
55

66
Ryot serves the final configuration loaded at the `/backend/config` endpoint as JSON
7-
([example](https://app.ryot.io/backend/config)).
7+
([example](https://pro.ryot.io/backend/config)).
88

99
!!! info
1010

docs/content/guides/openid.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Ryot can be configured to use OpenID Connect (OIDC) for authentication. The foll
44
environment variables need to be set:
55

66
```bash
7-
FRONTEND_URL=https://app.ryot.io # The URL of your Ryot instance
7+
FRONTEND_URL=https://pro.ryot.io # The URL of your Ryot instance
88
SERVER_OIDC_CLIENT_ID=********
99
SERVER_OIDC_CLIENT_SECRET=********
1010
SERVER_OIDC_ISSUER_URL=https://accounts.google.com # The URL of your OIDC provider (might end with trailing slash)

docs/content/integrations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ All webhook URLs follow this format:
3737

3838
```txt
3939
https://<instance_url>/backend/_i/<slug>
40-
https://app.ryot.io/backend/_i/int_a6cGGXEq6KOI # example
40+
https://pro.ryot.io/backend/_i/int_a6cGGXEq6KOI # example
4141
```
4242

4343
!!! warning

docs/includes/backend-config-schema.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ frontend:
108108

109109
# Used as the base URL when generating item links for the frontend.
110110
# @envvar FRONTEND_URL
111-
url: "https://app.ryot.io"
111+
url: "https://pro.ryot.io"
112112

113113
# Settings related to external integrations.
114114
integration:

libs/config/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ pub struct FrontendUmamiConfig {
302302
#[config(rename_all = "snake_case", env_prefix = "FRONTEND_")]
303303
pub struct FrontendConfig {
304304
/// Used as the base URL when generating item links for the frontend.
305-
#[setting(default = "https://app.ryot.io")]
305+
#[setting(default = "https://pro.ryot.io")]
306306
pub url: String,
307307
/// The number of items to display in a list view.
308308
#[setting(default = 20)]

0 commit comments

Comments
 (0)