From 46e682bca3e3abebffb6d10bc6ec791c0e5bec97 Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:20:20 +0000 Subject: [PATCH] Update installation.md --- docs/guide/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 4b452251..47d369e4 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -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://:@/lnbits - alter line bellow with your user, password and db name +# postgres://:@/ - 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