回答編集履歴

1

手順追加

2017/05/09 03:25

投稿

dohq
dohq

スコア232

test CHANGED
@@ -7,3 +7,27 @@
7
7
  https://github.com/google/battery-historian#building-from-source-code
8
8
 
9
9
  のとおりに行なうのが一番かと思われます
10
+
11
+
12
+
13
+ ```
14
+
15
+ $ go get -d -u github.com/google/battery-historian/...
16
+
17
+
18
+
19
+ $ cd %GOPATH%/src/github.com/google/battery-historian
20
+
21
+
22
+
23
+ # Compile Javascript files using the Closure compiler
24
+
25
+ $ go run setup.go
26
+
27
+
28
+
29
+ # Run Historian on your machine (make sure $PATH contains $GOBIN)
30
+
31
+ $ go run cmd/battery-historian/battery-historian.go [--port <default:9999>]
32
+
33
+ ```