Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/.vitepress/theme/components/DeploymentGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ const platforms = [
name: 'Citadel',
desc: 'App Store install',
url: '/guide/installation/node-platforms#citadel',
dark: '/logos/backends/citadel-dark.svg',
light: '/logos/backends/citadel-light.svg',
difficulty: 'Easy',
features: 'Full',
},
Expand All @@ -63,6 +65,7 @@ const platforms = [
name: 'LNbits SaaS',
desc: 'Official hosted solution',
url: '/guide/installation/saas',
icon: '/logos/lnbits.svg',
difficulty: 'Easiest',
features: 'Full',
badge: 'Fastest',
Expand All @@ -87,6 +90,7 @@ const platforms = [
name: 'Docker',
desc: 'Recommended for production',
url: '/guide/installation/docker',
icon: '/logos/backends/docker.svg',
difficulty: 'Moderate',
features: 'Full',
badge: 'Production',
Expand All @@ -95,6 +99,7 @@ const platforms = [
name: 'uv',
desc: 'Fastest Python install',
url: '/guide/installation/uv',
icon: '/logos/backends/python.svg',
difficulty: 'Moderate',
features: 'Full',
badge: 'Dev',
Expand All @@ -103,27 +108,31 @@ const platforms = [
name: 'Poetry',
desc: 'Traditional Python setup',
url: '/guide/installation/poetry',
icon: '/logos/backends/poetry.svg',
difficulty: 'Moderate',
features: 'Full',
},
{
name: 'Nix',
desc: 'Reproducible builds',
url: '/guide/installation/nix',
icon: '/logos/backends/nixos.svg',
difficulty: 'Advanced',
features: 'Full',
},
{
name: 'AppImage',
desc: 'Desktop app',
url: '/guide/installation/appimage',
icon: '/logos/backends/appimage.svg',
difficulty: 'Easy',
features: 'Full',
},
{
name: 'Fly.io',
desc: 'Cloud deployment',
url: '/guide/installation/flyio',
icon: '/logos/backends/flyio.svg',
difficulty: 'Moderate',
features: 'Full',
},
Expand All @@ -132,6 +141,7 @@ const platforms = [
]

function logoSrc(item) {
if (item.icon) return item.icon
if (!item.dark && !item.light) return null
return isDark.value ? item.dark : item.light
}
Expand Down
1 change: 1 addition & 0 deletions docs/guide/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ No matter how you deploy, LNbits connects to **your** Lightning backend. Your ke
| --- | --- |
| **Try it out quickly** | [LNbits SaaS](/guide/installation/saas) or [Docker](/guide/installation/docker) |
| **Already run a Bitcoin node** | [Node platforms](/guide/installation/node-platforms) (one click) |
| **Debian/Ubuntu server** | [Install script](/guide/installation/uv#install-script-debian-ubuntu) (one command) |
| **Production server** | [Docker](/guide/installation/docker) + [PostgreSQL](/guide/installation/postgresql) |
| **Development** | [uv](/guide/installation/uv) or [Poetry](/guide/installation/poetry) |
| **NixOS user** | [Nix](/guide/installation/nix) |
Expand Down
12 changes: 4 additions & 8 deletions docs/guide/installation/uv.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,14 @@ lnbits-cli superuser

## Install script (Debian/Ubuntu)

For a quick install on Debian-based systems:
The official one-line install script handles everything: system dependencies, cloning, venv setup, and configuration.

```bash
# One-liner install (installs system deps, clones repo, sets up venv)
sudo apt install python3-dev python3-venv libpq-dev build-essential -y && \
git clone https://github.com/lnbits/lnbits.git && \
cd lnbits && \
uv venv && source .venv/bin/activate && \
uv pip install . && \
cp .env.example .env
wget https://raw.githubusercontent.com/lnbits/lnbits/main/lnbits.sh && chmod +x lnbits.sh && ./lnbits.sh
```

After installation, use `./lnbits.sh` to run, or for more control: `cd lnbits && uv run lnbits`.

## Updating

```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
## Installation
- [Choose a Method](https://docs.lnbits.com/guide/installation/): Decision tree for picking the right installation method
- [Docker](https://docs.lnbits.com/guide/installation/docker): Container-based setup with Docker Compose (recommended for production)
- [uv](https://docs.lnbits.com/guide/installation/uv): Fastest from-source install using the uv package manager
- [uv](https://docs.lnbits.com/guide/installation/uv): Fastest from-source install using the uv package manager. Includes official one-line install script for Debian/Ubuntu (lnbits.sh)
- [Poetry](https://docs.lnbits.com/guide/installation/poetry): Traditional Python setup with Poetry dependency manager
- [Nix](https://docs.lnbits.com/guide/installation/nix): Reproducible builds with Nix flakes
- [AppImage](https://docs.lnbits.com/guide/installation/appimage): Desktop application for Linux, macOS, and Windows
Expand Down
1 change: 1 addition & 0 deletions docs/public/logos/backends/appimage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions docs/public/logos/backends/citadel-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions docs/public/logos/backends/citadel-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions docs/public/logos/backends/docker.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logos/backends/flyio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logos/backends/nixos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logos/backends/poetry.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logos/backends/python.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.