golang

keycloak-gatekeeper をビルドしてみる

keycloal の APIゲートウェイ の Keyclaok-Gatekeeper をビルドしてみます。 github.com $ go get github.com/keycloak/keycloak-gatekeeper $ cd ~/go/src/github.com/keycloak/keycloak-gatekeeper $ dep ensure $ go build $ ./keycloak-gatekeeper --ver…

golang install (Ubuntu 18.04)

Ubuntu 18.04 に golangを入れました $ sudo apt update && sudo apt upgrade -y $ sudo apt install -y gcc golang $ go version go version go1.10.4 linux/amd64 $ sudo apt install go-dep $ dep version dep: version : devel build date : git hash : …

はじめてのgo 環境作り

Ubuntu で Go開発ができるように環境準備をしてみます。 後でDockerファイル化する予定 apt-get install -y vim ## http://askubuntu.com/questions/593433/error-sudo-add-apt-repository-command-not-found apt-get install -y software-properties-common…