From f7b001f4b819229ced64ec1d20370974161721a6 Mon Sep 17 00:00:00 2001 From: barnettZQG Date: Mon, 7 Sep 2020 09:40:11 +0800 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5eb0d8294..a9f4aae50 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,12 +1,17 @@ # Compile the project ``` -# if you have golang environment -make build -# if you have docker environment +# you must have docker and golang environment + +# build all docker image make image -# or + +# build all binary file make binary + +# build binary for different os +GOOS=windows make binary + # if you what build one component make binary WHAT=api make image WHAT=api