all: imp readme

This commit is contained in:
Ainar Garipov
2022-08-17 21:43:31 +03:00
parent 2830f396c6
commit ea5d165a70

View File

@@ -68,7 +68,9 @@ and both share a lot of code.
## Getting Started ## Getting Started
### Automated install (Linux and Mac) ### Automated install (Linux and Mac)
Run the following command in your terminal: Run the following command in your terminal:
```sh ```sh
curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
``` ```
@@ -204,7 +206,7 @@ You will need this to build AdGuard Home:
Open Terminal and execute these commands: Open Terminal and execute these commands:
```bash ```sh
git clone https://github.com/AdguardTeam/AdGuardHome git clone https://github.com/AdguardTeam/AdGuardHome
cd AdGuardHome cd AdGuardHome
make make
@@ -222,10 +224,13 @@ Check the [`Makefile`](https://github.com/AdguardTeam/AdGuardHome/blob/master/Ma
In order to do this, specify `GOOS` and `GOARCH` env variables before running make. In order to do this, specify `GOOS` and `GOARCH` env variables before running make.
For example: For example:
```sh ```sh
env GOOS='linux' GOARCH='arm64' make env GOOS='linux' GOARCH='arm64' make
``` ```
Or:
or:
```sh ```sh
make GOOS='linux' GOARCH='arm64' make GOOS='linux' GOARCH='arm64'
``` ```
@@ -281,11 +286,13 @@ There are three options how you can install an unstable version:
3. Standalone builds. Use the automated installation script or look for the available builds below. 3. Standalone builds. Use the automated installation script or look for the available builds below.
Beta: Beta:
```sh ```sh
curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -c beta curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -c beta
``` ```
Edge: Edge:
```sh ```sh
curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -c edge curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -c edge
``` ```