6 lines
199 B
Makefile
6 lines
199 B
Makefile
gen:
|
|
rm -rf schemas
|
|
python generator.py queues
|
|
python -m grpc_tools.protoc --proto_path schemas --python_out=. --pyi_out=. --grpc_python_out=. ./schemas/queues/tasks.proto
|
|
run:
|
|
python ./server.py
|