Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ If the provided link for Ubuntu & PopOS is expired or returns an error 404, you
Clone the source code from our Github project.

```shell
git clone https://github.com/AppFlowy-IO/AppFlowy.git
git clone --depth 1 https://github.com/AppFlowy-IO/AppFlowy.git
```

{% hint style="warning" %}
Expand Down Expand Up @@ -132,7 +132,7 @@ Flutter version 3.27.4 is the recent supported stable release used for building
- **Method 2:** You can use the code below to install flutter manually on your linux system.

```bash
git clone https://github.com/flutter/flutter.git --branch 3.27.4
git clone --depth 1 https://github.com/flutter/flutter.git --branch 3.27.4
cd flutter
echo -e "\nexport PATH=\$PATH:"`pwd`"/bin" >> ~/.bashrc
source ~/.bashrc
Expand All @@ -147,7 +147,7 @@ cd ..
1. Clone asdf.

```bash
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.1
git clone --depth 1 https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.1
```

2. Add the path to asdf and enable asdf auto-completion in your shell.
Expand Down