From 9f5207525f45daa8a1eb0512d6070ae3c342176e Mon Sep 17 00:00:00 2001 From: Daniel Krahofer Date: Thu, 30 Jun 2022 12:23:38 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 87119ef..56463b1 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,10 @@ lncli-sim 1 newaddr p2wsh lncli-sim 2 listpeers ``` +# urls for lnbits and mempool +* lnbits: http://localhost:5000/ +* mempool: http://localhost:8080/ + # lnbits debug log ```console docker logs lnbits-legend-lnbits-1 -f From 949d2c81de99aeb8b9a828d3d6d80a14b4b7f657 Mon Sep 17 00:00:00 2001 From: Daniel Krahofer Date: Mon, 4 Jul 2022 17:39:15 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 56463b1..141bd23 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# requirements +docker compose v2: https://docs.docker.com/compose/install/compose-plugin/ + # setup clone it into your lnbits-legend repository ```console From 5e6035901ebf801ae68d5ef12e0fcd629604834c Mon Sep 17 00:00:00 2001 From: dni Date: Mon, 4 Jul 2022 18:27:06 +0200 Subject: [PATCH 3/3] add debug variable to lnbits env --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 65a0c8b..456e5c7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,6 +8,7 @@ services: entrypoint: "sh -c 'sleep 30; uvicorn lnbits.__main__:app --port 5000 --host lnbits --reload'" environment: HOST: lnbits + QUART_DEBUG: true LNBITS_BACKEND_WALLET_CLASS: "LndRestWallet" LNBITS_DATA_FOLDER: "./data" LND_REST_ENDPOINT: "https://lnd-2:8081/"