mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-24 05:11:09 +00:00
Use git clone --recursive
This commit is contained in:
parent
0e9e14cac0
commit
1dd318b6f4
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue