Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 427 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 427 Bytes

cse124-lec-grpc

CSE 124 Fall 2017 grpc companion code

George Porter ([email protected])

To build the protocol buffer IDL into auto-generated stubs:

$ mvn protobuf:compile protobuf:compile-custom

To build the code:

$ mvn package

To run the server

$ target/atm/bin/runServer [port]

To run the client

$ target/atm/bin/runClient [hostname] [port]

To delete all programs and object files

$ mvn clean