]> Untitled Git - lemmy.git/commitdiff
Use correct database env variable in docs
authorD Anzorge <d.anzorge@gmail.com>
Mon, 27 Jan 2020 00:45:02 +0000 (01:45 +0100)
committerD Anzorge <d.anzorge@gmail.com>
Mon, 27 Jan 2020 00:45:02 +0000 (01:45 +0100)
see server/src/settings.rs

docs/src/contributing_local_development.md

index a681eeb0d3ffec7a659dd60ac0c1b7d3009a79a3..c19bcba843cd19bd6e2b10c18de5d2e560e59516 100644 (file)
@@ -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