Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 627 Bytes

SOURCE_INSTALL.md

File metadata and controls

33 lines (22 loc) · 627 Bytes

Install DR from sources

To install the project from sources, clone it to your preferred directory:

git clone git@github.com:MarcosCela/dr.git --depth=1 --branch=stable

Then build it:

# Generate the binary called 'dr'
go build

# Copy the dr binary to a directory that is in your $PATH variable
cp dr ${DIRECTORY_IN_MY_PATH}/dr

# Make it executable!
chmod +x ${DIRECTORY_IN_MY_PATH}/dr

# Ensure it works!
dr help

Remember to set the basic configuration!

The project is built with the following go version:

go version go1.11 linux/amd64