From bc1cbab0097daa229c372bef338c937ffb6515d4 Mon Sep 17 00:00:00 2001 From: Manoj P R Date: Wed, 6 Feb 2019 20:08:24 +0530 Subject: [PATCH 1/2] GRPC unix install instructions and production warning --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 90f51ff3..cd61f66a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Attribution ----------- This library is a fork of https://github.com/aloiscochard/grpc-haskell that we -have extended and released under the same [`LICENSE`](./LICENSE) +have extended and released under the same [`LICENSE`](./LICENSE). It's not ready for production use and use it with caution. Installation ------------ @@ -119,6 +119,27 @@ There are basically two methods to accomplish this: sha256 "efad782944da13d362aab9b81f001b7b8b1458794751de818e9848c47acd4b32" ``` +Installing GRPC on Unix +----------------------- +1. Clone the repo + ``` + git clone https://github.com/grpc/grpc + cd grpc + ``` +2. Checkout version 1.2 + ``` + git checkout tags/v1.2.0 + ``` +3. Install sub modules + ``` + git submodule update --init + ``` +3. Make and Install + ``` + make + sudo make install + ``` + Using the Library ----------------- From 3b8c43739ab0b1b927d07d835c6feafd0aa42fb2 Mon Sep 17 00:00:00 2001 From: Parnell Springmeyer Date: Mon, 11 Feb 2019 14:38:37 +0530 Subject: [PATCH 2/2] Update README.md with PR suggestion Co-Authored-By: manojpramesh --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd61f66a..6c3b8538 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Attribution ----------- This library is a fork of https://github.com/aloiscochard/grpc-haskell that we -have extended and released under the same [`LICENSE`](./LICENSE). It's not ready for production use and use it with caution. +have extended and released under the same [`LICENSE`](./LICENSE). Please use with caution in production. Installation ------------