From 2de8209509c81b76002e82afe9893d3613f52bee Mon Sep 17 00:00:00 2001 From: Malte Bauch <malte.bauch@stud.h-da.de> Date: Fri, 4 Mar 2022 10:21:48 +0000 Subject: [PATCH] Master into develop2 --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0835d28c9..0cf06d1d7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ - [Overview](#overview) - [Concepts](#concepts) -- [Installing](#installing) +- [Installation](#installation) - [Getting Started](#getting-started) * [k8s](#k8s) * [Using the goSDN CLI](#using-the-cli) @@ -37,19 +37,15 @@ The PND is the single source of truth within a network. Its state is held and ma Any device directly configured by `goSDN` -# Installing +# Installation You can install the latest release of `goSDN` locally using the `go get` command. Since the repository and some dependencies are not publicly available you have to modify your git config first: ```sh -> git config --global url."git@code.fbi.h-da.de:".insteadOf "https://code.fbi.h-da.de" -> go env -w GOPRIVATE=code.fbi.h-da.de/cocsn/* > go get code.fbi.h-da.de/danet/gosdn/cmd/gosdn ``` To install the development version you need to clone the repo and use `go install` to build and install the binary: ```sh # If you haven't cloned the repo yet -> git config --global url."git@code.fbi.h-da.de:".insteadOf "https://code.fbi.h-da.de" -> go env -w GOPRIVATE=code.fbi.h-da.de/cocsn/* > cd $GOPATH/src > git clone git@code.fbi.h-da.de:cocsn/gosdn.git -- GitLab