From ae23567fbf9b9c727a48d198d6ef124a0a6bff3f Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Wed, 7 Dec 2022 10:26:30 +0000 Subject: [PATCH 1/2] Update installation.md --- docs/guide/installation.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index b531abde..1a7e9a9e 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -47,6 +47,15 @@ poetry run lnbits # adding --debug in the start-up command above to help your troubleshooting and generate a more verbose output # Note that you have to add the line DEBUG=true in your .env file, too. ``` +#### Updating the server + +``` +# Stop LNbits with `ctrl + x` +cd lnbits-legend/ +git pull +poetry install - - only main +# Start LNbits with `poetry run lnbits` +``` ## Option 2: Nix From d8a21800f2e6a7ba48784e64a7f34e60c395265e Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 7 Dec 2022 10:29:01 +0000 Subject: [PATCH 2/2] Switched steps --- docs/guide/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 1a7e9a9e..48bf0f1f 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -50,8 +50,8 @@ poetry run lnbits #### Updating the server ``` -# Stop LNbits with `ctrl + x` cd lnbits-legend/ +# Stop LNbits with `ctrl + x` git pull poetry install - - only main # Start LNbits with `poetry run lnbits`