Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 248 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 248 Bytes

Raft in OCaml

To start node and start a cluster:

dune exec -- bin/main.exe node -host 127.0.0.1  -port 8000

To start a node and join a cluster:

dune exec -- bin/main.exe node -host 127.0.0.1 -port 8000 -boostrap-server 127.0.0.1:8000