Review changes

This commit is contained in:
qtchaos 2024-01-03 21:02:29 +02:00
parent 0983989f53
commit 04a29acef0
No known key found for this signature in database
GPG Key ID: 7DA98B2B9EF06A90
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ The client is what users sees when navigating to your domain, it's the main part
## Progressive Web App
The client can be optionally ran as a [PWA](https://web.dev/explore/progressive-web-apps), which allows it to be installed on a mobile device. This can be hard to do correctly and really hard to reverse, so it's generally not recommended to do so if you don't have experience hosting PWAs. If you understand the risks and still want to continue, then read more about it [here](../1.self-hosting/3.about-pwa.md).
The client can be optionally ran as a [PWA](https://web.dev/explore/progressive-web-apps), which allows it to be installed on a mobile device. **This can be hard to do correctly and really hard if not almost impossible to reverse**, so it's generally not recommended to do so if you don't have experience hosting PWAs. If you understand the risks and still want to continue, then read more about it [here](../1.self-hosting/3.about-pwa.md).
## Configuration

View File

@ -4,7 +4,7 @@ title: 'TMDB API Key'
# Getting an API Key
In order to search for movies and TV shows, we use an API called ["The Movie Database" (TMDB)](https://www.themoviedb.org/){target="\_blank"}. For your client to be able to search, you need to generate am API key for yourself.
In order to search for movies and TV shows, we use an API called ["The Movie Database" (TMDB)](https://www.themoviedb.org/){target="\_blank"}. For your client to be able to search, you need to generate an API key for yourself.
::alert{type="info"}
The API key is **free**, you just need to create an account.

View File

@ -4,7 +4,7 @@ title: 'Introduction'
# Introduction to the backend
The backend is essentially just an account server, there is not much more to it. The client will work fine without it, but no syncing options will be available.
The backend is essentially just an account server. It handles user accounts, syncing, and other account related features.
## Metrics