From 75f8c240ce47279e2869245d06a615b4da2e80fb Mon Sep 17 00:00:00 2001 From: Brandon Sprague Date: Sun, 19 Jan 2025 21:41:20 -0800 Subject: [PATCH] Fix links in documentation I didn't realized that the `README.md` was a symlink to `docs/index.md`. As a result, the images in the main README.md are broke, but looked fine when viewing `docs/index.md` directly. The solution is to use absolute paths. Context: https://github.com/gauteh/lieer/pull/295#issuecomment-2600780145 --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index ba579ca..0820b42 100644 --- a/docs/index.md +++ b/docs/index.md @@ -246,12 +246,12 @@ In any case, you can generate your own OAuth 2 credentials instead. This require - For `Application type`, select `Desktop app` - For `Name`, name it `Lieer` or `gmi client` or something you'll recognize -![A screenshot of the GCP OAuth 2 credential creation dialog](create-credentials.png) +![A screenshot of the GCP OAuth 2 credential creation dialog](/docs/create-credentials.png) 5. [Download the credentials](https://console.cloud.google.com/auth/clients) by clicking the little download icon next to your newly created OAuth 2 client ID - This will download the `client_secret.json` file you need for Lieer. -![A screenshot of a mouse hovering over the "Download JSON" icon](download-json.png) +![A screenshot of a mouse hovering over the "Download JSON" icon](/docs/download-json.png) Store the `client_secret.json` file somewhere safe and specify it to `gmi auth -c`. You can do this on a repository that is already initialized, possibly using `-f` to force reauthorizing with the new client secrets.