From 32d0e78ea3aca2a75b085bde98b52de1d205de8a Mon Sep 17 00:00:00 2001 From: maxence-charriere Date: Thu, 25 Mar 2021 20:08:51 +0800 Subject: [PATCH] Update docs --- README.md | 4 ++ docs/.html | 60 +++++++++++++------------- docs/app-worker.js | 6 +-- docs/app.js | 2 +- docs/architecture.html | 76 ++++++++++++++++----------------- docs/built-with.html | 58 ++++++++++++------------- docs/components.html | 80 +++++++++++++++++------------------ docs/concurrency.html | 72 +++++++++++++++---------------- docs/index.html | 60 +++++++++++++------------- docs/install.html | 72 +++++++++++++++---------------- docs/js.html | 54 ++++++++++++------------ docs/lifecycle.html | 58 ++++++++++++------------- docs/manifest.webmanifest | 4 +- docs/reference.html | 52 +++++++++++------------ docs/routing.html | 68 +++++++++++++++--------------- docs/seo.html | 76 ++++++++++++++++----------------- docs/src/main.go | 4 +- docs/start.html | 62 +++++++++++++-------------- docs/static-resources.html | 68 +++++++++++++++--------------- docs/syntax.html | 84 ++++++++++++++++++------------------- docs/testing.html | 60 +++++++++++++------------- docs/v7-to-v8.html | 62 +++++++++++++-------------- docs/web/app.wasm | Bin 14882064 -> 14882099 bytes docs/web/images/go-app.png | Bin 340012 -> 383049 bytes 24 files changed, 573 insertions(+), 569 deletions(-) diff --git a/README.md b/README.md index ba1b1d00d..749dc6bbe 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,10 @@ func main() { } ``` +## Getting started + +**Read the [Getting Started](https://go-app.dev/start) document**. + ## Contributors ### Code Contributors diff --git a/docs/.html b/docs/.html index 533efa426..0caae85c9 100644 --- a/docs/.html +++ b/docs/.html @@ -2,17 +2,17 @@ - + - + - + - + A Go package for building Progressive Web Apps @@ -23,8 +23,8 @@ - - + + @@ -39,13 +39,13 @@
-
+
-
+
-
-
+
+ -
- +
+

Loading go-app documentation...

diff --git a/docs/app-worker.js b/docs/app-worker.js index f8a7b0c88..050a9b5c3 100644 --- a/docs/app-worker.js +++ b/docs/app-worker.js @@ -1,7 +1,7 @@ -const cacheName = "app-" + "f1c394789ebb7fc8c233748998ad7e0b9692c895"; +const cacheName = "app-" + "d432dbe2d2faf6d2849e0a76f312130d5b4e7a30"; self.addEventListener("install", event => { - console.log("installing app worker f1c394789ebb7fc8c233748998ad7e0b9692c895"); + console.log("installing app worker d432dbe2d2faf6d2849e0a76f312130d5b4e7a30"); self.skipWaiting(); event.waitUntil( @@ -37,7 +37,7 @@ self.addEventListener("activate", event => { ); }) ); - console.log("app worker f1c394789ebb7fc8c233748998ad7e0b9692c895 is activated"); + console.log("app worker d432dbe2d2faf6d2849e0a76f312130d5b4e7a30 is activated"); }); self.addEventListener("fetch", event => { diff --git a/docs/app.js b/docs/app.js index 12da3517d..ba88fb3f5 100644 --- a/docs/app.js +++ b/docs/app.js @@ -28,7 +28,7 @@ if ("serviceWorker" in navigator) { // ----------------------------------------------------------------------------- // Init progressive app // ----------------------------------------------------------------------------- -const goappEnv = {"GOAPP_ROOT_PREFIX":"","GOAPP_STATIC_RESOURCES_URL":"","GOAPP_VERSION":"f1c394789ebb7fc8c233748998ad7e0b9692c895"}; +const goappEnv = {"GOAPP_ROOT_PREFIX":"","GOAPP_STATIC_RESOURCES_URL":"","GOAPP_VERSION":"d432dbe2d2faf6d2849e0a76f312130d5b4e7a30"}; function goappGetenv(k) { return goappEnv[k]; diff --git a/docs/architecture.html b/docs/architecture.html index 7581d1bb5..07b05826c 100644 --- a/docs/architecture.html +++ b/docs/architecture.html @@ -4,27 +4,27 @@ - + - + - + - + - + Understanding go-app architecture - + - - + + - - + + @@ -39,7 +39,7 @@
-
+
@@ -53,8 +53,8 @@
-
+
@@ -785,7 +785,7 @@

Next