An open API service indexing awesome lists of open source software.

https://github.com/ytvwld/pythonfoo-raft

my instance of our raft challenge
https://github.com/ytvwld/pythonfoo-raft

challenge pythonfoo raft

Last synced: 3 months ago
JSON representation

my instance of our raft challenge

Awesome Lists containing this project

README

          

# pythonfoo-raft

We're currently re-implementing [raft](https://raft.github.io/) at @Pythonfoo.

This is my implementation.

## current state

We do have a single-node key-value store and a client accessing it.
Also, tests for both.

## running

server:

```
python3 -m raft.server.server
```

client:

```
python3 -m raft.client.cli
```