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
- Host: GitHub
- URL: https://github.com/ytvwld/pythonfoo-raft
- Owner: YtvwlD
- Created: 2022-04-28T16:55:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-28T19:28:32.000Z (over 3 years ago)
- Last Synced: 2025-02-12T07:54:43.663Z (11 months ago)
- Topics: challenge, pythonfoo, raft
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```