Browse Source

Added instruction to fetch all dependent packages needed for the client side app.

Wirecog 7 years ago
parent
commit
5aceb15d67
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Readme.md

+ 3
- 1
Readme.md View File

25
 ### Build the Client-Side Go App
25
 ### Build the Client-Side Go App
26
 `cd $ISOGO_APP_ROOT/client`
26
 `cd $ISOGO_APP_ROOT/client`
27
 
27
 
28
+`go get ./...`
29
+
28
 `gopherjs build`
30
 `gopherjs build`
29
 
31
 
30
 ### Run the Web Server Instance
32
 ### Run the Web Server Instance
45
 
47
 
46
 Once you've installed, and confirmed, that the basic Isomorphic Go application is working, the next logical step is to install [Kick](https://github.com/isomorphicgo/kick).
48
 Once you've installed, and confirmed, that the basic Isomorphic Go application is working, the next logical step is to install [Kick](https://github.com/isomorphicgo/kick).
47
 
49
 
48
-Kick automatically recompiles Go code, and it can take both the `go` and `gopherjs` commands into consideration. 
50
+Kick automatically recompiles Go code, and it has the ability to take both the `go` and `gopherjs` commands into consideration. 
49
 
51
 
50
 Kick performs an *instant kickstart* of the web server instance, upon the modification of a Go source file. [Check out Kick](https://github.com/isomorphicgo/kick)
52
 Kick performs an *instant kickstart* of the web server instance, upon the modification of a Go source file. [Check out Kick](https://github.com/isomorphicgo/kick)
51
 
53