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.

33 lines
1.3 KiB

4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
  1. # slowlorisdb [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucube/slowlorisdb)](https://goreportcard.com/report/github.com/arnaucube/slowlorisdb) [![Build Status](https://travis-ci.org/arnaucube/slowlorisdb.svg?branch=master)](https://travis-ci.org/arnaucube/slowlorisdb) [![GoDoc](https://godoc.org/github.com/arnaucube/slowlorisdb?status.svg)](https://godoc.org/github.com/arnaucube/slowlorisdb)
  2. Slow, decentralized and cryptographically consistent database
  3. Basically this repo is a blockchain written from scratch, that allows to launch multiple simultaneous blockchains.
  4. **Warning**: this project was started in the free time of a long travel, not having much more free time to continue developing it.
  5. Watch the blockchain in action: http://www.youtubemultiplier.com/5ca9c1a540b31-slowlorisdb-visual-representation.php
  6. ![slowloris](https://04019a5a-a-62cb3a1a-s-sites.googlegroups.com/site/jchristensensdigitalportfolio/slow-loris/IO-moth-eating-frozen-apple-sauce.jpg "slowloris")
  7. ## Run
  8. The repo is under construction
  9. - create node
  10. ```sh
  11. # node0
  12. go run main.go --config config0.yaml create
  13. # node1
  14. go run main.go --config config1.yaml create
  15. ```
  16. - run node
  17. ```sh
  18. # node0
  19. go run main.go --config config0.yaml start
  20. # node1
  21. go run main.go --config config1.yaml start
  22. ```