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,6 +25,8 @@ It is assumed that the latest version of Go is already installed on your system
25 25
 ### Build the Client-Side Go App
26 26
 `cd $ISOGO_APP_ROOT/client`
27 27
 
28
+`go get ./...`
29
+
28 30
 `gopherjs build`
29 31
 
30 32
 ### Run the Web Server Instance
@@ -45,7 +47,7 @@ If all goes well, you should see the Isomorphic Go logo, along with a message re
45 47
 
46 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 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