mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
25 lines
621 B
Markdown
25 lines
621 B
Markdown
|
#### Requirements
|
||
|
|
||
|
- [Rust](https://www.rust-lang.org/)
|
||
|
- [Yarn](https://yarnpkg.com/en/)
|
||
|
- [Postgres](https://www.postgresql.org/)
|
||
|
|
||
|
#### Set up Postgres DB
|
||
|
|
||
|
```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
|
||
|
```
|
||
|
|
||
|
#### Running
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/dessalines/lemmy
|
||
|
cd lemmy
|
||
|
./install.sh
|
||
|
# For live coding, where both the front and back end, automagically reload on any save, do:
|
||
|
# cd ui && yarn start
|
||
|
# cd server && cargo watch -x run
|
||
|
```
|