From 9e13b8eb70c397bac4e1eca24497881e546c318d Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Tue, 18 Jan 2022 22:29:15 +0000 Subject: [PATCH] Update installation.md --- docs/devs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/devs/installation.md b/docs/devs/installation.md index 4f9091c93..4611d5820 100644 --- a/docs/devs/installation.md +++ b/docs/devs/installation.md @@ -30,11 +30,11 @@ Create the data folder and edit the .env file: To then run the server for development purposes (includes hot-reload), use: - pipenv run python -m uvicorn lnbits.__main__:app --reload + pipenv run python -m uvicorn lnbits.__main__:app --host 0.0.0.0 --reload For production, use: - pipenv run python -m uvicorn lnbits.__main__:app + pipenv run python -m uvicorn lnbits.__main__:app --host 0.0.0.0 You might also need to install additional packages, depending on the [backend wallet](../guide/wallets.md) you use. E.g. when you want to use LND you have to `pipenv run pip install lndgrpc` and `pipenv run pip install purerpc`.