From ee34d978d88ade84cd8713c0b100a99b871fbc26 Mon Sep 17 00:00:00 2001 From: Tiago vasconcelos Date: Thu, 4 Nov 2021 15:12:10 +0000 Subject: [PATCH] install guide fastapi --- docs/guide/installation.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 8a2782b7..ca08ad71 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -16,12 +16,10 @@ python3 -m venv venv ./venv/bin/pip install -r requirements.txt cp .env.example .env mkdir data -./venv/bin/quart assets -./venv/bin/quart migrate -./venv/bin/hypercorn -k trio --bind 0.0.0.0:5000 'lnbits.app:create_app()' +./venv/bin/uvicorn lnbits.__main__:app --reload ``` -Now you can visit your LNbits at http://localhost:5000/. +Now you can visit your LNbits at http://localhost:8000/. Now modify the `.env` file with any settings you prefer and add a proper [funding source](./wallets.md) by modifying the value of `LNBITS_BACKEND_WALLET_CLASS` and providing the extra information and credentials related to the chosen funding source.