summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorD Anzorge <d.anzorge@gmail.com>2020-01-27 01:45:02 +0100
committerD Anzorge <d.anzorge@gmail.com>2020-01-27 01:45:02 +0100
commit3bee6f6e31544ece45f11225e9d76fea288c3579 (patch)
tree32b9db47fc01ec32cc8b8d74c8aa2a863408f5ee /docs
parentcc6c173828c34ceffb3ebaec624ec2d4e813c251 (diff)
Use correct database env variable in docs
see server/src/settings.rs
Diffstat (limited to 'docs')
-rw-r--r--docs/src/contributing_local_development.md2
1 files changed, 1 insertions, 1 deletions
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