# Harmony Benchmark [![Build Status](https://travis-ci.com/simple-rules/harmony-benchmark.svg?token=DnoYvYiTAk7pqTo9XsTi&branch=master)](https://travis-ci.com/simple-rules/harmony-benchmark) ## Golang Coding Convention * Follow [effective_go](https://golang.org/doc/effective_go.html) * Constant enum should follow CamelCase. * Comments of each element in a struct is written right after the element. ## Dev Environment Setup ``` export GOPATH=$HOME/ mkdir -p $HOME//src cd $HOME//src git clone git@github.com:simple-rules/harmony-benchmark.git cd harmony-benchmark go get ./... ``` ## Usage ### Running local test without db ``` ./deploy.sh local_config.txt ``` ### Running local test with db ``` ./deploy.sh local_config.txt 1 ``` ## Testing Make sure you the following command and make sure everything passed before submitting your code. ``` ./test_before_submit.sh ``` ## Linting Make sure you the following command and make sure everything passes golint. ``` ./lint_before_submit.sh ```