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

https://github.com/zhashkevych/quotes-server

TCP Server with PoW mechanism
https://github.com/zhashkevych/quotes-server

Last synced: 6 months ago
JSON representation

TCP Server with PoW mechanism

Awesome Lists containing this project

README

          

# QUOTES TCP SERVER & CLIENT
## With Proof-of-Work verification

For the proof of work logic [Hashcash](https://en.wikipedia.org/wiki/Hashcash#:~:text=Hashcash%20is%20a%20cryptographic%20hash,proof%20can%20be%20verified%20efficiently.) algorithm is used (check the implementation inside `pkg/hashcash`).

To run the server, use command:
```
docker-compose up --build quotes-server
```

To run client:
```
docker-compose up --build quotes-client
```

Run unit tests:
```
go test -v ./...
```