Use git clone --recursive

This commit is contained in:
Felix Ableitner 2022-04-07 12:22:57 +02:00
parent 0e9e14cac0
commit 1dd318b6f4
2 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@
```bash ```bash
sudo apt install git docker-compose sudo apt install git docker-compose
sudo systemctl start docker sudo systemctl start docker
git clone https://github.com/LemmyNet/lemmy git clone https://github.com/LemmyNet/lemmy --recursive
``` ```
### Arch-based distro ### Arch-based distro
@ -14,7 +14,7 @@ git clone https://github.com/LemmyNet/lemmy
```bash ```bash
sudo pacman -S git docker-compose sudo pacman -S git docker-compose
sudo systemctl start docker sudo systemctl start docker
git clone https://github.com/LemmyNet/lemmy git clone https://github.com/LemmyNet/lemmy --recursive
``` ```
## Running ## Running

View file

@ -30,9 +30,9 @@ brew install node yarn
### Get the back end source code ### Get the back end source code
``` ```
git clone https://github.com/LemmyNet/lemmy.git git clone https://github.com/LemmyNet/lemmy.git --recursive
# or alternatively from gitea # or alternatively from gitea
# git clone https://yerbamate.ml/LemmyNet/lemmy.git # git clone https://yerbamate.ml/LemmyNet/lemmy.git --recursive
``` ```
### Build the backend (Rust) ### Build the backend (Rust)
@ -43,7 +43,7 @@ cargo build
### Get the front end source code ### Get the front end source code
``` ```
git clone https://github.com/LemmyNet/lemmy-ui.git --recurse-submodules git clone https://github.com/LemmyNet/lemmy-ui.git --recursive
``` ```
### Setup postgresql ### Setup postgresql