├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── helper-server ├── README.md ├── app.yaml └── server.go ├── step3-manifest ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── manifest.json ├── site.js └── styles.css ├── step4-sw ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── manifest.json ├── site.js ├── styles.css └── sw.js ├── step5-push ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── manifest.json ├── site.js ├── styles.css └── sw.js ├── step6-cache ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── manifest.json ├── site.js ├── styles.css └── sw.js ├── step7-imperative ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── manifest.json ├── site.js ├── styles.css └── sw.js └── work ├── background.jpeg ├── clear.html ├── construction.gif ├── crypto.js ├── dragon.html ├── dragon.js ├── dragon.png ├── faq.html ├── icon-192.png ├── index.html ├── logo.png ├── site.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/README.md -------------------------------------------------------------------------------- /helper-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/helper-server/README.md -------------------------------------------------------------------------------- /helper-server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/helper-server/app.yaml -------------------------------------------------------------------------------- /helper-server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/helper-server/server.go -------------------------------------------------------------------------------- /step3-manifest/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/background.jpeg -------------------------------------------------------------------------------- /step3-manifest/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/clear.html -------------------------------------------------------------------------------- /step3-manifest/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/construction.gif -------------------------------------------------------------------------------- /step3-manifest/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/crypto.js -------------------------------------------------------------------------------- /step3-manifest/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/dragon.html -------------------------------------------------------------------------------- /step3-manifest/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/dragon.js -------------------------------------------------------------------------------- /step3-manifest/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/dragon.png -------------------------------------------------------------------------------- /step3-manifest/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/faq.html -------------------------------------------------------------------------------- /step3-manifest/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/icon-192.png -------------------------------------------------------------------------------- /step3-manifest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/index.html -------------------------------------------------------------------------------- /step3-manifest/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/logo.png -------------------------------------------------------------------------------- /step3-manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/manifest.json -------------------------------------------------------------------------------- /step3-manifest/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/site.js -------------------------------------------------------------------------------- /step3-manifest/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step3-manifest/styles.css -------------------------------------------------------------------------------- /step4-sw/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/background.jpeg -------------------------------------------------------------------------------- /step4-sw/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/clear.html -------------------------------------------------------------------------------- /step4-sw/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/construction.gif -------------------------------------------------------------------------------- /step4-sw/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/crypto.js -------------------------------------------------------------------------------- /step4-sw/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/dragon.html -------------------------------------------------------------------------------- /step4-sw/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/dragon.js -------------------------------------------------------------------------------- /step4-sw/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/dragon.png -------------------------------------------------------------------------------- /step4-sw/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/faq.html -------------------------------------------------------------------------------- /step4-sw/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/icon-192.png -------------------------------------------------------------------------------- /step4-sw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/index.html -------------------------------------------------------------------------------- /step4-sw/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/logo.png -------------------------------------------------------------------------------- /step4-sw/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/manifest.json -------------------------------------------------------------------------------- /step4-sw/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/site.js -------------------------------------------------------------------------------- /step4-sw/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/styles.css -------------------------------------------------------------------------------- /step4-sw/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step4-sw/sw.js -------------------------------------------------------------------------------- /step5-push/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/background.jpeg -------------------------------------------------------------------------------- /step5-push/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/clear.html -------------------------------------------------------------------------------- /step5-push/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/construction.gif -------------------------------------------------------------------------------- /step5-push/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/crypto.js -------------------------------------------------------------------------------- /step5-push/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/dragon.html -------------------------------------------------------------------------------- /step5-push/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/dragon.js -------------------------------------------------------------------------------- /step5-push/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/dragon.png -------------------------------------------------------------------------------- /step5-push/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/faq.html -------------------------------------------------------------------------------- /step5-push/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/icon-192.png -------------------------------------------------------------------------------- /step5-push/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/index.html -------------------------------------------------------------------------------- /step5-push/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/logo.png -------------------------------------------------------------------------------- /step5-push/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/manifest.json -------------------------------------------------------------------------------- /step5-push/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/site.js -------------------------------------------------------------------------------- /step5-push/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/styles.css -------------------------------------------------------------------------------- /step5-push/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step5-push/sw.js -------------------------------------------------------------------------------- /step6-cache/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/background.jpeg -------------------------------------------------------------------------------- /step6-cache/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/clear.html -------------------------------------------------------------------------------- /step6-cache/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/construction.gif -------------------------------------------------------------------------------- /step6-cache/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/crypto.js -------------------------------------------------------------------------------- /step6-cache/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/dragon.html -------------------------------------------------------------------------------- /step6-cache/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/dragon.js -------------------------------------------------------------------------------- /step6-cache/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/dragon.png -------------------------------------------------------------------------------- /step6-cache/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/faq.html -------------------------------------------------------------------------------- /step6-cache/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/icon-192.png -------------------------------------------------------------------------------- /step6-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/index.html -------------------------------------------------------------------------------- /step6-cache/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/logo.png -------------------------------------------------------------------------------- /step6-cache/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/manifest.json -------------------------------------------------------------------------------- /step6-cache/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/site.js -------------------------------------------------------------------------------- /step6-cache/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/styles.css -------------------------------------------------------------------------------- /step6-cache/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step6-cache/sw.js -------------------------------------------------------------------------------- /step7-imperative/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/background.jpeg -------------------------------------------------------------------------------- /step7-imperative/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/clear.html -------------------------------------------------------------------------------- /step7-imperative/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/construction.gif -------------------------------------------------------------------------------- /step7-imperative/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/crypto.js -------------------------------------------------------------------------------- /step7-imperative/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/dragon.html -------------------------------------------------------------------------------- /step7-imperative/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/dragon.js -------------------------------------------------------------------------------- /step7-imperative/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/dragon.png -------------------------------------------------------------------------------- /step7-imperative/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/faq.html -------------------------------------------------------------------------------- /step7-imperative/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/icon-192.png -------------------------------------------------------------------------------- /step7-imperative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/index.html -------------------------------------------------------------------------------- /step7-imperative/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/logo.png -------------------------------------------------------------------------------- /step7-imperative/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/manifest.json -------------------------------------------------------------------------------- /step7-imperative/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/site.js -------------------------------------------------------------------------------- /step7-imperative/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/styles.css -------------------------------------------------------------------------------- /step7-imperative/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/step7-imperative/sw.js -------------------------------------------------------------------------------- /work/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/background.jpeg -------------------------------------------------------------------------------- /work/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/clear.html -------------------------------------------------------------------------------- /work/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/construction.gif -------------------------------------------------------------------------------- /work/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/crypto.js -------------------------------------------------------------------------------- /work/dragon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/dragon.html -------------------------------------------------------------------------------- /work/dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/dragon.js -------------------------------------------------------------------------------- /work/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/dragon.png -------------------------------------------------------------------------------- /work/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/faq.html -------------------------------------------------------------------------------- /work/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/icon-192.png -------------------------------------------------------------------------------- /work/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/index.html -------------------------------------------------------------------------------- /work/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/logo.png -------------------------------------------------------------------------------- /work/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/site.js -------------------------------------------------------------------------------- /work/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-to-progressive-web-apps/HEAD/work/styles.css --------------------------------------------------------------------------------