diff --git a/docs/quickstart/index.html b/docs/quickstart/index.html index dc449a0..bd285f5 100644 --- a/docs/quickstart/index.html +++ b/docs/quickstart/index.html @@ -65,8 +65,17 @@ body {
INSTANCE=gokrazy/hello; mkdir -p ~/${INSTANCE?} && cd ~/${INSTANCE?} && echo module ${INSTANCE?} > go.mod -go get -u github.com/gokrazy/tools/cmd/gokr-packer+
+ Create a directory for this gokrazy instance and initialize a Go module: +
+INSTANCE=gokrazy/hello +mkdir -p ~/${INSTANCE?} +cd ~/${INSTANCE?} +go mod init hello+
+ Then, install the gokr-packer: +
+go get github.com/gokrazy/tools/cmd/gokr-packer@latest
diff --git a/website/content/quickstart.html b/website/content/quickstart.html index 33b7434..f3515cc 100644 --- a/website/content/quickstart.html +++ b/website/content/quickstart.html @@ -27,8 +27,17 @@ menu:
INSTANCE=gokrazy/hello; mkdir -p ~/${INSTANCE?} && cd ~/${INSTANCE?} && echo module ${INSTANCE?} > go.mod -go get -u github.com/gokrazy/tools/cmd/gokr-packer+
+ Create a directory for this gokrazy instance and initialize a Go module: +
+INSTANCE=gokrazy/hello +mkdir -p ~/${INSTANCE?} +cd ~/${INSTANCE?} +go mod init hello+
+ Then, install the gokr-packer: +
+go get github.com/gokrazy/tools/cmd/gokr-packer@latest