This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
LemmyNet
/
lemmy
Watch
3
Star
2
Fork
3
Code
Pull Requests
1
Releases
151
Wiki
Activity
Browse Source
Use correct database env variable in docs
see server/src/settings.rs
DeeUnderscore-doc/db-env-variable
D Anzorge
1 year ago
parent
cc6c173828
commit
3bee6f6e31
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
docs/src/contributing_local_development.md
+ 1
- 1
docs/src/contributing_local_development.md
View 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
Write
Preview
Loading…
Cancel
Save