Update installation.md

This commit is contained in:
Arc 2022-01-14 09:19:49 +00:00 committed by GitHub
parent a44aba6fcf
commit 11bf2029be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ python3 -m venv venv
./venv/bin/pip install -r requirements.txt
cp .env.example .env
# add the database connection string to .env 'nano .env' LNBITS_DATABASE_URL=
# postgres://<user>:<myPassword>@<host>/<database> - alter line bellow with your user, password and db name
# postgres://<user>:<myPassword>@<host>/lnbits - alter line bellow with your user, password and db name
LNBITS_DATABASE_URL="postgres://postgres:postgres@localhost/lnbits"
# save and exit
./venv/bin/uvicorn lnbits.__main__:app --port 5000