From 3bee6f6e31544ece45f11225e9d76fea288c3579 Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Mon, 27 Jan 2020 01:45:02 +0100 Subject: [PATCH] Use correct database env variable in docs see server/src/settings.rs --- docs/src/contributing_local_development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/contributing_local_development.md b/docs/src/contributing_local_development.md index a681eeb0..c19bcba8 100644 --- a/docs/src/contributing_local_development.md +++ b/docs/src/contributing_local_development.md @@ -9,7 +9,7 @@ ```bash psql -c "create user lemmy with password 'password' superuser;" -U postgres psql -c 'create database lemmy with owner lemmy;' -U postgres - export DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy + export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy ``` #### Running