From 04a29acef061d00f1d227db46487eb2394622468 Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Wed, 3 Jan 2024 21:02:29 +0200 Subject: [PATCH] Review changes --- content/3.client/0.introduction.md | 2 +- content/3.client/2.tmdb.md | 2 +- content/4.backend/0.introduction.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/3.client/0.introduction.md b/content/3.client/0.introduction.md index 1746c2d..f864163 100644 --- a/content/3.client/0.introduction.md +++ b/content/3.client/0.introduction.md @@ -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 diff --git a/content/3.client/2.tmdb.md b/content/3.client/2.tmdb.md index 3c08cdb..5b956e9 100644 --- a/content/3.client/2.tmdb.md +++ b/content/3.client/2.tmdb.md @@ -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. diff --git a/content/4.backend/0.introduction.md b/content/4.backend/0.introduction.md index 02f39a4..8ec7b9d 100644 --- a/content/4.backend/0.introduction.md +++ b/content/4.backend/0.introduction.md @@ -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