dropbox / pb-jelly

A protobuf code generation framework for the Rust language developed at Dropbox.
Apache License 2.0
611 stars 25 forks source link

[setup] Adding dev script #6

Closed ParkMyCar closed 4 years ago

ParkMyCar commented 4 years ago

This change adds a shell scripts dev_setup-osx.sh that pretty much puts into a bash script, what the current development instructions are, when run it gives you a nicely formatted prompt:

Thanks for your interest in developing on pb-rs!

This script will run the following commands to install the necessary packages, and generate necessary code, for development

     -> brew install protobuf go coreutils
     -> pip install six protobuf
     -> go get github.com/gogo/protobuf/proto

     -> ./gen_protos.sh

Continue, and install the above packages? [y/N]

And then if you choose to continue, installs all the necessary packages and generates the necessary protos

isho commented 4 years ago

Nice! +1 👍

nipunn1313 commented 4 years ago

sweet! Lets update the README too to point to the dev script!