File tree 1 file changed +25
-1
lines changed
1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 21
21
| [ prototool] ( https://github.com/uber/prototool/blob/dev/docs/install.md ) | ` 7df3b95 ` |
22
22
| [ goimports] ( https://godoc.org/golang.org/x/tools/cmd/goimports ) | ` 3792095 ` |
23
23
24
- - Setup GIT_HOST to override the setting for your custom path (e.g. github.com/<myaccount >)
24
+ ## Developer quick start
25
+
26
+ - Setup ` GIT_HOST ` to override the setting for your custom path.
27
+
28
+ ``` bash
29
+ export GIT_HOST=github.com/< YOUR_GITHUB_ID>
30
+ ```
31
+
32
+ - Run the ` linter ` and ` test ` before building the binary.
33
+
34
+ ``` bash
35
+ make check
36
+ make test
37
+ make build
38
+ ```
39
+
40
+ - Build and push the docker image for local development.
41
+
42
+ ``` bash
43
+ export IMG=< YOUR_CUSTOMIZED_IMAGE_NAME>
44
+ export REGISTRY=< YOUR_CUSTOMIZED_IMAGE_REGISTRY>
45
+ make build-push-images
46
+ ```
47
+
48
+ > ** Note:** You need to login the docker registry before running the command above.
You can’t perform that action at this time.
0 commit comments