Skip to content

Latest commit

 

History

History
97 lines (84 loc) · 1.92 KB

README.md

File metadata and controls

97 lines (84 loc) · 1.92 KB

Build Status codecov Go Report Card

PRACTICING-CASSANDRA-GOLANG

Practicing Cassandra Using Golang (Gin Gonic Framework) with Go Mod as Programming Language, Cassandra as Database

Directory structure

Your project directory structure should look like this

  + your_gopath/
  |
  +--+ src/github.com/moemoe89
  |  |
  |  +--+ practicing-cassandra-golang/
  |     |
  |     +--+ main.go
  |        + api/
  |        + routers/
  |        + ... any other source code
  |
  +--+ bin/
  |  |
  |  +-- ... executable file
  |
  +--+ pkg/
     |
     +-- ... all dependency_library required

Requirements

Go >= 1.11

Setup and Build

$ mkdir -p src/github.com/moemoe89
$ cd src/github.com/moemoe89
$ git clone <url>
$ mv <cloned directory> practicing-cassandra-golang

Running Application

Make config file for local :

$ cp config-sample.json config-local.json

Build

$ go build

Run

$ go run main.go

How to Run with Docker

Make config file for docker :

$ cp config-sample.json config-docker.json

Build

$ docker-compose build

Run

$ docker-compose up

Stop

$ docker-compose down

How to Run Unit Test

Run

$ go test ./...

Run with cover

$ go test ./... -cover

Run with HTML output

$ go test ./... -coverprofile=c.out && go tool cover -html=c.out

License

MIT