cas-server icon indicating copy to clipboard operation
cas-server copied to clipboard

how to install cas-server

Open ericdai opened this issue 8 years ago • 1 comments

I am new goer, want to know how to deploy cas-server

ericdai avatar Oct 20 '16 12:10 ericdai

You need to install GO and Git.

Then you create a directory under your GoPath directory $HOME/go/src/github.com/matthewvalimaki

And clone this repo:

cd $HOME/go/src/github.com/matthewvalimaki && git clone [email protected]:matthewvalimaki/cas-server.git

Then you need to retrieve dependencies and build it:

go get && go build

You will have a binary with the same name: "cas-server".

To launch it : ./cas-server

programaths avatar Dec 14 '17 09:12 programaths