Update installation.md
This commit is contained in:
parent
09bfa35cd5
commit
9e13b8eb70
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
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:
|
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.
|
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`.
|
E.g. when you want to use LND you have to `pipenv run pip install lndgrpc` and `pipenv run pip install purerpc`.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue