mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Add instructions for unning db-init.sh to contributing_local_development.md
This commit is contained in:
parent
a8ef9f8726
commit
7612a54894
1 changed files with 12 additions and 3 deletions
15
docs/src/contributing_local_development.md
vendored
15
docs/src/contributing_local_development.md
vendored
|
@ -7,9 +7,18 @@
|
||||||
#### Set up Postgres DB
|
#### Set up Postgres DB
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
psql -c "create user lemmy with password 'password' superuser;" -U postgres
|
# Start at the root of the Lemmy repository
|
||||||
psql -c 'create database lemmy with owner lemmy;' -U postgres
|
|
||||||
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
cd server
|
||||||
|
./db-init.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Or run the commands manually:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
psql -c "create user lemmy with password 'password' superuser;" -U postgres
|
||||||
|
psql -c 'create database lemmy with owner lemmy;' -U postgres
|
||||||
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Running
|
#### Running
|
||||||
|
|
Loading…
Reference in a new issue