- make a virtual env
virtualenv venv
- install requirements from requirements file
pip install -r requirements.txt
- make sure
protoc
is installed
- make proto file in python
- if you changed the todo.proto file do these; else jump to next level
cd todo
protoc -I . todo.proto --python_out=.
- run server
cd server
python app.py
- run client
cd client
python client.py
s