storj/cmd/overlay
Dennis Coyle 2b4a1ef17d
Coyle/docker fix (#109)
* port changes

* Merge remote-tracking branch 'upstream/master'

* Merge remote-tracking branch 'upstream/master'

* Merge remote-tracking branch 'upstream/master'

* Merge remote-tracking branch 'upstream/master'

* Merge remote-tracking branch 'upstream/master'

* Merge branch 'master' of https://github.com/storj/storj

* fixing tag name

* no idea

* testing

* changes

* testing on travis

* testing

* changes to travis build

* new approach

* Merge branch 'master' into coyle/docker-fix
2018-06-22 16:17:37 -04:00
..
Dockerfile Coyle/docker fix (#109) 2018-06-22 16:17:37 -04:00
main.go basic structure (#39) 2018-05-16 12:47:59 -06:00
overlay.yaml pkg/kademlia tests and restructuring (#97) 2018-06-22 09:33:57 -04:00
README.md Cache (#67) 2018-06-05 17:06:37 -04:00

TODO

Overlay Network

Documentation for developing and building the overlay network component of the Storj node.

Running as a cache server

To run a cache, you'll need a running instance of Redis.

Using docker is the fastest way to get a redis instance up and running.

docker run -p 6379:6379 --name -d redis

Once you have that running, build the binary.

go build cmd/overlay/main.go

Then you can run the node with the -cache flag

./main -cache localhost:6379