Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.11 KB

File metadata and controls

52 lines (33 loc) · 1.11 KB

Building Haven

This document provides instructions for building the Haven relay from source.

Prerequisites

Go

Ensure you have Go installed on your system. You can download it from here.

Alternatively, Go can often be found in your favourite package manager.

For Ubuntu users, you can install Go using the following commands:

sudo apt update #Update Package List
sudo apt install snapd #install snapd to get a newer version of Go
sudo snap install go --classic #Install Go
go version #check if go was installed correctly

Build Essentials

If you're using Linux, you may need to install build essentials. For Ubuntu users, you can do this by running:

sudo apt install build-essential`

Building from Source

1. Clone the repository

git clone https://github.com/barrydeen/haven.git
cd haven

2. Build the project

Run the following command to build the relay:

go build

After building the project, you can proceed with the setup instructions in the main README.


README