From 7807c5c7c2391bfb65517c5ae54068211bb76f37 Mon Sep 17 00:00:00 2001 From: Christian Beutel <> Date: Thu, 28 Aug 2025 14:53:16 +0200 Subject: [PATCH] fix bare-metal update instructions --- docs/src/content/docs/run/installation.mdx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/run/installation.mdx b/docs/src/content/docs/run/installation.mdx index abbe36ed..bd020a66 100644 --- a/docs/src/content/docs/run/installation.mdx +++ b/docs/src/content/docs/run/installation.mdx @@ -269,10 +269,17 @@ Make sure you replace `MEILI_MASTER_KEY` with a secure value before going to pro ### Updating -To update to the latest version: +To update to the latest version stop the running application and run: ```bash git pull origin main + +cd wanderer/db +go mod tidy && go build + +cd wanderer/web +npm ci --omit=dev +npm run build ``` Then re-run the launch script. Always review the [changelog](/changelog) for breaking changes.