Skip to content

Commit

Permalink
docs/installing.md: instruct to build tag and add skipping tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erciccione authored and woodser committed Sep 21, 2022
1 parent 8d5643a commit 99fb3e5
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,30 @@ On Ubuntu: `sudo apt install make wget git openjdk-11-jdk`. The Monero binaries

## Build Haveno

1. Download this repository: `git clone https://github.com/haveno-dex/haveno.git`
2. Navigate to the root of the repository (`cd haveno`) and build the repository: run `make` in the terminal and wait until the process is completed (this will also download and verify the Monero binaries).
If it's the first time you are building Haveno, run the following commands to download the repository, the needed dependencies, and build the latest release:

```
git clone https://github.com/haveno-dex/haveno.git
cd haveno
git checkout v0.0.2
make
```

*If you only want to quickly build the binaries, use `make skip-tests` instead of `make`. It will skip the tests and increase the build speed drastically.*

If you are updating from a previous version, run from the root of the repository:

```
git fetch --tags
git checkout v0.0.2
make clean && make
```

Make sure to delete the folder with the local settings, as there are breaking changes between releases:

On **Linux**: remove everything inside `~/.local/share/haveno-*/xmr_stagenet/`, except the `wallet` folder.

On **Mac**: remove everything inside `~/Library/Application\ Support/haveno-*/xmr_stagenet/`, except the `wallet` folder.

## Join the public test network

Expand Down

0 comments on commit 99fb3e5

Please sign in to comment.