https://github.com/gizo-network/gizo
Decentralized distributed system built using blockchain technology to provide a marketplace for users to trade their processing power in reward for ethereum
https://github.com/gizo-network/gizo
blockchain concensus gizo go golang p2p
Last synced: 5 months ago
JSON representation
Decentralized distributed system built using blockchain technology to provide a marketplace for users to trade their processing power in reward for ethereum
- Host: GitHub
- URL: https://github.com/gizo-network/gizo
- Owner: gizo-network
- License: mit
- Created: 2017-12-25T18:05:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-27T23:30:26.000Z (about 8 years ago)
- Last Synced: 2024-06-20T07:59:33.664Z (almost 2 years ago)
- Topics: blockchain, concensus, gizo, go, golang, p2p
- Language: Go
- Homepage:
- Size: 12.8 MB
- Stars: 10
- Watchers: 4
- Forks: 4
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gizo
## Contribution
We welcome and appreciate contributions from anyone regardless of magnitude of fixes. Just make sure to have fun while at it!
If you'd like to contribute to gizo, start by forking the repo. Make sure to have [Go](https://golang.org/doc/install) and [Dep](https://golang.github.io/dep/docs/installation.html) installed. Clone this repo into `$GOPATH/src/github.com/gizo-network/` by running the command `git clone https://github.com/gizo-network/gizo.git`. Enter the directory and install the dependencies by running `cd $GOPATH/src/github.com/gizo-network/gizo && dep ensure`. Now that you've successfully done that, it's time to setup git origin and upstream remote url's so you can push straight to your forks rather than into `github.com/gizo-network/gizo`. To achieve this, run the following commands:
* `git remote set-url upstream https://github.com/gizo-network/gizo.git`
* `git remote set-url origin https://github.com/USERNAME/gizo.git` - make sure to replace USERNAME with your github username
Please make sure your contributions follow our coding guidelines:
* Stick to [git branching model](http://nvie.com/posts/a-successful-git-branching-model/)
* Make pull requests from your feature or hotfix branches into the develop branch
* Push to the origin of your forked repo and make pull requests to gizo
* Commit messages should be prefixed with the package(s) they modify.
* E.g `core, helpers: example message`