- The project of Fault Tolerant Computing in NYCU 111-2
- cd ./Online-Voting/src
- Launch the server from the terminal:
python server.py
- From another terminal, start the client:
python client.py
- In
src/server.py
, modify the port value inport = '34652'
and ip inserver.add_insecure_port('[::]:' + port)
. - In
src/client.py
, modify the port value inport = '34652'
and ip inchannel = grpc.insecure_channel('localhost:' + port)
.