cSploit / daemon

the core of the cSploit project
http://www.csploit.org/
GNU General Public License v3.0
34 stars 27 forks source link

New daemon (golang) #3

Closed Systenix closed 7 years ago

Systenix commented 7 years ago

Hi tux-mind,

I saw that there is a new version of the core of cSploit coded in Golang.

I have one question as a new "learner" of this language. How can I deploy it and do some tests. Is there any way to create a Makefile ?

Thx

lahmark commented 7 years ago

To launch the tests do the following:

mkdir ~/.gocode export GOPATH=$HOME/.gocode mkdir -p $GOPATH/src/github.com/cSploit ln -s $(pwd) $GOPATH/src/github.com/cSploit/daemon

Now when you run "go test ./..." You must have some errors like: "... missing packages "package name" in any of" To fix this you need to download the required package. Execute: go get "the missing packages".

Et voilà !

tux-mind commented 7 years ago

@Check-mate thanks for answering in my behalf <3

closing