add information on --locked flag (#117)

This commit is contained in:
rscmbbng 2021-12-19 21:10:15 +01:00 committed by GitHub
parent d7c0895873
commit 1e510bfca9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,10 @@ Compile and install Lemmy, setup database:
```bash ```bash
apt install pkg-config libssl-dev libpq-dev cargo postgresql apt install pkg-config libssl-dev libpq-dev cargo postgresql
# installs latest release, you can also specify one with --version # installs latest release, you can also specify one with --version
cargo install lemmy_server --target-dir /usr/bin/ # The --locked argument uses the exact versions of dependencies specified in
# `cargo.lock`at release time. Running it without the flag will use newer minor
# release versions of those dependencies, which are not always guaranteed to compile.
cargo install lemmy_server --target-dir /usr/bin/ --locked
# replace db-passwd with a randomly generated password # replace db-passwd with a randomly generated password
sudo -iu postgres psql -c "CREATE USER lemmy WITH PASSWORD 'db-passwd';" sudo -iu postgres psql -c "CREATE USER lemmy WITH PASSWORD 'db-passwd';"
sudo -iu postgres psql -c "CREATE DATABASE lemmy WITH OWNER lemmy;" sudo -iu postgres psql -c "CREATE DATABASE lemmy WITH OWNER lemmy;"