The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/README.md

42 lines
869 B

7 years ago
# Harmony Benchmark
6 years ago
[![Build Status](https://travis-ci.com/simple-rules/harmony-benchmark.svg?token=DnoYvYiTAk7pqTo9XsTi&branch=master)](https://travis-ci.com/simple-rules/harmony-benchmark)
7 years ago
6 years ago
## Golang Coding Convention
6 years ago
* 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.
6 years ago
## Dev Environment Setup
```
export GOPATH=$HOME/<path_of_your_choice>
mkdir -p $HOME/<path_of_your_choice>/src
cd $HOME/<path_of_your_choice>/src
6 years ago
git clone git@github.com:simple-rules/harmony-benchmark.git
cd harmony-benchmark
go get github.com/go-stack/stack
```
7 years ago
## Usage
6 years ago
```
./deploy.sh local_config.txt
6 years ago
```
## Testing
Make sure you the following command and make sure everything passed before submitting your code.
'''
./test_before_submit.sh
'''