Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: README.md

Issue 1807463005: luci-go: Improving setup instructions in README.md (Closed) Base URL: git+ssh://github.com/mithro/luci-go.git@patch-1
Patch Set: Fix the quickstart command. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 luci-go: LUCI services and tools in Go 1 luci-go: LUCI services and tools in Go
2 ====================================== 2 ======================================
3 3
4 [![GoDoc](https://godoc.org/github.com/luci/luci-go?status.svg)](https://godoc.o rg/github.com/luci/luci-go) 4 [![GoDoc](https://godoc.org/github.com/luci/luci-go?status.svg)](https://godoc.o rg/github.com/luci/luci-go)
5 [![Build Status](https://travis-ci.org/luci/luci-go.svg?branch=master)](https:// travis-ci.org/luci/luci-go) 5 [![Build Status](https://travis-ci.org/luci/luci-go.svg?branch=master)](https:// travis-ci.org/luci/luci-go)
6 [![Coverage Status](https://coveralls.io/repos/luci/luci-go/badge.svg?branch=mas ter&service=github)](https://coveralls.io/github/luci/luci-go?branch=master) 6 [![Coverage Status](https://coveralls.io/repos/luci/luci-go/badge.svg?branch=mas ter&service=github)](https://coveralls.io/github/luci/luci-go?branch=master)
7 7
8 Installing 8 Installing
9 ---------- 9 ----------
10 10
11 If you already have a go environment and are developing outside of Chrome
12 infrastructure:
13
11 go get -u github.com/luci/luci-go/client/cmd/... 14 go get -u github.com/luci/luci-go/client/cmd/...
12 go get -u github.com/luci/luci-go/server/cmd/... 15 go get -u github.com/luci/luci-go/server/cmd/...
13 16
17 Otherwise you should use [Chromium infra/go area](https://chromium.googlesource. com/infra/infra/+/master/go/README.md).
18 You can use their [`quicksetup`](https://chromium.googlesource.com/infra/infra/+ /master/go/quicksetup.sh)
19 script to get such an environment like this:
20
21 cd /where/you/want/source/code
22 wget -O- "https://chromium.googlesource.com/infra/infra/+/master/go/quickset up.sh?format=TEXT" | base64 -d | bash
23
14 24
15 Code layout 25 Code layout
16 ----------- 26 -----------
17 27
18 * [/appengine/...](https://github.com/luci/luci-go/tree/master/appengine) 28 * [/appengine/...](https://github.com/luci/luci-go/tree/master/appengine)
19 contains [AppEngine](https://cloud.google.com/appengine/docs/go/) server 29 contains [AppEngine](https://cloud.google.com/appengine/docs/go/) server
20 code. It imports packages from `/common/...` and `/server/...`. 30 code. It imports packages from `/common/...` and `/server/...`.
21 * [/client/...](https://github.com/luci/luci-go/tree/master/client) contains 31 * [/client/...](https://github.com/luci/luci-go/tree/master/client) contains
22 all client code. 32 all client code.
23 * [/common/...](https://github.com/luci/luci-go/tree/master/common) contains 33 * [/common/...](https://github.com/luci/luci-go/tree/master/common) contains
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 # hack hack 67 # hack hack
58 68
59 git commit -a -m "This is awesome\nR=joe@example.com" 69 git commit -a -m "This is awesome\nR=joe@example.com"
60 # This will ask for your Google Account credentials. 70 # This will ask for your Google Account credentials.
61 git cl upload -s 71 git cl upload -s
62 # Wait for LGTM over email. 72 # Wait for LGTM over email.
63 # Check the commit queue box in codereview website. 73 # Check the commit queue box in codereview website.
64 # Wait for the change to be tested and landed automatically. 74 # Wait for the change to be tested and landed automatically.
65 75
66 Use `git cl help` and `git cl help <cmd>` for more details. 76 Use `git cl help` and `git cl help <cmd>` for more details.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698