mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-24 05:11:09 +00:00
Use git clone --recursive (#131)
This commit is contained in:
parent
0e9e14cac0
commit
bebf8f5af2
2 changed files with 5 additions and 5 deletions
|
@ -6,7 +6,7 @@
|
|||
```bash
|
||||
sudo apt install git docker-compose
|
||||
sudo systemctl start docker
|
||||
git clone https://github.com/LemmyNet/lemmy
|
||||
git clone https://github.com/LemmyNet/lemmy --recursive
|
||||
```
|
||||
|
||||
### Arch-based distro
|
||||
|
@ -14,7 +14,7 @@ git clone https://github.com/LemmyNet/lemmy
|
|||
```bash
|
||||
sudo pacman -S git docker-compose
|
||||
sudo systemctl start docker
|
||||
git clone https://github.com/LemmyNet/lemmy
|
||||
git clone https://github.com/LemmyNet/lemmy --recursive
|
||||
```
|
||||
|
||||
## Running
|
||||
|
|
|
@ -30,9 +30,9 @@ brew install node yarn
|
|||
|
||||
### 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
|
||||
# git clone https://yerbamate.ml/LemmyNet/lemmy.git
|
||||
# git clone https://yerbamate.ml/LemmyNet/lemmy.git --recursive
|
||||
```
|
||||
|
||||
### Build the backend (Rust)
|
||||
|
@ -43,7 +43,7 @@ cargo build
|
|||
|
||||
### 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
|
||||
|
|
Loading…
Reference in a new issue