From f8069c531d89221b12cca28ffbde6b16aaa533a8 Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Wed, 8 Oct 2025 16:33:04 +0100 Subject: [PATCH] Update installation.md --- docs/guide/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 6c9beeaae..815d532e4 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -15,8 +15,8 @@ Note that by default LNbits uses SQLite as its database, which is simple and eff Go to [releases](https://github.com/lnbits/lnbits/releases) and pull latest AppImage, or: ```sh -sudo apt-get install libfuse2 -wget $(curl -s https://api.github.com/repos/lnbits/lnbits/releases/latest | jq -r '.assets[] | select(.name | endswith(".AppImage")) | .browser_download_url') -O LNbits-latest.AppImage +sudo apt-get install jq libfuse2 +wget $(curl -s https://api.github.com/repos/arcbtc/lnbits/releases/latest | jq -r '.assets[] | select(.name | endswith(".AppImage")) | .browser_download_url') -O LNbits-latest.AppImage chmod +x LNbits-latest.AppImage LNBITS_ADMIN_UI=true HOST=0.0.0.0 PORT=5000 ./LNbits-latest.AppImage # most system settings are now in the admin UI, but pass additional .env variables here ```