From 20e6ca019ee0c523ef74bb011f44b4923e400319 Mon Sep 17 00:00:00 2001
From: Pavol Rusnak
Date: Sat, 14 Jan 2023 11:26:17 +0000
Subject: [PATCH] replace lnbits-legend with lnbits in github links (#1366)
---
docs/guide/installation.md | 28 +++++++++----------
lnbits/core/templates/core/index.html | 2 +-
.../boltz/templates/boltz/_api_docs.html | 2 +-
.../templates/lnaddress/_api_docs.html | 2 +-
.../lnaddress/templates/lnaddress/index.html | 2 +-
.../templates/subdomains/_api_docs.html | 2 +-
lnbits/wallets/eclair.py | 2 +-
7 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/docs/guide/installation.md b/docs/guide/installation.md
index 1b2e07e99..52ce6420d 100644
--- a/docs/guide/installation.md
+++ b/docs/guide/installation.md
@@ -15,8 +15,8 @@ By default, LNbits will use SQLite as its database. You can also use PostgreSQL
If you have problems installing LNbits using these instructions, please have a look at the [Troubleshooting](#troubleshooting) section.
```sh
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend/
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
# for making sure python 3.9 is installed, skip if installed. To check your installed version: python3 --version
sudo apt update
@@ -50,7 +50,7 @@ poetry run lnbits
#### Updating the server
```
-cd lnbits-legend/
+cd lnbits
# Stop LNbits with `ctrl + x`
git pull
# Keep your poetry install up to date, this can be done with `poetry self update`
@@ -63,8 +63,8 @@ poetry install --only main
> note: currently not supported while we make some architectural changes on the path to leave beta
```sh
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend/
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
# Modern debian distros usually include Nix, however you can install with:
# 'sh <(curl -L https://nixos.org/nix/install) --daemon', or use setup here https://nixos.org/download.html#nix-verify-installation
@@ -83,8 +83,8 @@ LNBITS_DATA_FOLDER=data LNBITS_BACKEND_WALLET_CLASS=LNbitsWallet LNBITS_ENDPOINT
## Option 3: venv
```sh
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend/
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
# ensure you have virtualenv installed, on debian/ubuntu 'apt install python3.9-venv'
python3.9 -m venv venv
# If you have problems here, try `sudo apt install -y pkg-config libpq-dev`
@@ -106,9 +106,9 @@ If you want to host LNbits on the internet, run with the option `--host 0.0.0.0`
## Option 4: Docker
```sh
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend
-docker build -t lnbits-legend .
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
+docker build -t lnbits .
cp .env.example .env
mkdir data
docker run --detach --publish 5000:5000 --name lnbits-legend --volume ${PWD}/.env:/app/.env --volume ${PWD}/data/:/app/data lnbits-legend
@@ -136,8 +136,8 @@ You can either run those commands, then `source ~/.bash_profile` or, if you don'
Once installed, run the following commands.
```
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
fly auth login
[complete login process]
fly launch
@@ -438,8 +438,8 @@ If you want to run LNbits on your Umbrel but want it to be reached through clear
To install using docker you first need to build the docker image as:
```
-git clone https://github.com/lnbits/lnbits-legend.git
-cd lnbits-legend
+git clone https://github.com/lnbits/lnbits.git
+cd lnbits
docker build -t lnbits-legend .
```
diff --git a/lnbits/core/templates/core/index.html b/lnbits/core/templates/core/index.html
index a28030c03..104dccd94 100644
--- a/lnbits/core/templates/core/index.html
+++ b/lnbits/core/templates/core/index.html
@@ -66,7 +66,7 @@
outline
color="grey"
type="a"
- href="https://github.com/lnbits/lnbits-legend"
+ href="https://github.com/lnbits/lnbits"
target="_blank"
rel="noopener"
>View project in GitHubMore details
diff --git a/lnbits/extensions/lnaddress/templates/lnaddress/_api_docs.html b/lnbits/extensions/lnaddress/templates/lnaddress/_api_docs.html
index 300f56e9e..f4d1f651d 100644
--- a/lnbits/extensions/lnaddress/templates/lnaddress/_api_docs.html
+++ b/lnbits/extensions/lnaddress/templates/lnaddress/_api_docs.html
@@ -14,7 +14,7 @@
More details
diff --git a/lnbits/extensions/lnaddress/templates/lnaddress/index.html b/lnbits/extensions/lnaddress/templates/lnaddress/index.html
index 55d900f4f..41602581a 100644
--- a/lnbits/extensions/lnaddress/templates/lnaddress/index.html
+++ b/lnbits/extensions/lnaddress/templates/lnaddress/index.html
@@ -195,7 +195,7 @@
Check extension
documentation!
diff --git a/lnbits/extensions/subdomains/templates/subdomains/_api_docs.html b/lnbits/extensions/subdomains/templates/subdomains/_api_docs.html
index 08a2806e6..035d67a6d 100644
--- a/lnbits/extensions/subdomains/templates/subdomains/_api_docs.html
+++ b/lnbits/extensions/subdomains/templates/subdomains/_api_docs.html
@@ -14,7 +14,7 @@
More details
diff --git a/lnbits/wallets/eclair.py b/lnbits/wallets/eclair.py
index 57eec5828..b0c00db27 100644
--- a/lnbits/wallets/eclair.py
+++ b/lnbits/wallets/eclair.py
@@ -8,7 +8,7 @@ from typing import AsyncGenerator, Dict, Optional
import httpx
from loguru import logger
-# TODO: https://github.com/lnbits/lnbits-legend/issues/764
+# TODO: https://github.com/lnbits/lnbits/issues/764
# mypy https://github.com/aaugustin/websockets/issues/940
from websockets import connect # type: ignore
from websockets.exceptions import (