Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 838 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 838 Bytes

accessibility text

Hariken

Install

Use the following guide to install Go - https://golang.org/doc/install

git clone [email protected]:oneshadab/hariken.git
cd hariken
go install .

Run

hariken [command]

Valid values for command:

  • startServerAndConnect (default) - creates a server and connects to it
  • connect - connects to a running server using the default connection string
  • startServer - creates a server that can be connected to with connection string

Tests

go test -v -coverpkg=./... -coverprofile=profile.cov ./...

# Coverage in CLI
go tool cover -func profile.cov

# Coverage in Browser
go tool cover -html=profile.cov