From: D Anzorge Date: Mon, 27 Jan 2020 00:45:02 +0000 (+0100) Subject: Use correct database env variable in docs X-Git-Url: http://these/git/%22https:/image.com/static/gitweb.css?a=commitdiff_plain;h=3bee6f6e31544ece45f11225e9d76fea288c3579;p=lemmy.git Use correct database env variable in docs see server/src/settings.rs --- 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