├── .github ├── CODEOWNERS ├── linters │ ├── .htmlhintrc │ ├── .yaml-lint.yml │ └── sun_checks.xml ├── sync-repo-settings.yaml └── workflows │ ├── automation.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── start ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ └── order.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars ├── step05 ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ └── order.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars ├── step06 ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ ├── order.js │ └── spreadsheets.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars ├── step07 ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ ├── order.js │ └── spreadsheets.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js ├── sheets.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars ├── step08 ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ ├── order.js │ └── spreadsheets.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js ├── sheets.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars ├── step09 ├── app.js ├── config.json ├── db.sqlite ├── models │ ├── index.js │ ├── order.js │ └── spreadsheets.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── script.js │ └── styles.css ├── routes.js ├── server.js ├── sheets.js └── views │ ├── 404.handlebars │ ├── error.handlebars │ ├── index.handlebars │ ├── layout.handlebars │ └── upsert.handlebars └── step10 ├── app.js ├── config.json ├── db.sqlite ├── models ├── index.js ├── order.js └── spreadsheets.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── script.js └── styles.css ├── routes.js ├── server.js ├── sheets.js └── views ├── 404.handlebars ├── error.handlebars ├── index.handlebars ├── layout.handlebars └── upsert.handlebars /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/linters/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/linters/.htmlhintrc -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/linters/sun_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/linters/sun_checks.xml -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/workflows/automation.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/SECURITY.md -------------------------------------------------------------------------------- /start/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/app.js -------------------------------------------------------------------------------- /start/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/config.json -------------------------------------------------------------------------------- /start/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/db.sqlite -------------------------------------------------------------------------------- /start/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/models/index.js -------------------------------------------------------------------------------- /start/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/models/order.js -------------------------------------------------------------------------------- /start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/package-lock.json -------------------------------------------------------------------------------- /start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/package.json -------------------------------------------------------------------------------- /start/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/public/favicon.ico -------------------------------------------------------------------------------- /start/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/public/script.js -------------------------------------------------------------------------------- /start/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/public/styles.css -------------------------------------------------------------------------------- /start/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/routes.js -------------------------------------------------------------------------------- /start/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/server.js -------------------------------------------------------------------------------- /start/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/views/404.handlebars -------------------------------------------------------------------------------- /start/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/views/error.handlebars -------------------------------------------------------------------------------- /start/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/views/index.handlebars -------------------------------------------------------------------------------- /start/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/views/layout.handlebars -------------------------------------------------------------------------------- /start/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/start/views/upsert.handlebars -------------------------------------------------------------------------------- /step05/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/app.js -------------------------------------------------------------------------------- /step05/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/config.json -------------------------------------------------------------------------------- /step05/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/db.sqlite -------------------------------------------------------------------------------- /step05/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/models/index.js -------------------------------------------------------------------------------- /step05/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/models/order.js -------------------------------------------------------------------------------- /step05/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/package-lock.json -------------------------------------------------------------------------------- /step05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/package.json -------------------------------------------------------------------------------- /step05/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/public/favicon.ico -------------------------------------------------------------------------------- /step05/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/public/script.js -------------------------------------------------------------------------------- /step05/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/public/styles.css -------------------------------------------------------------------------------- /step05/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/routes.js -------------------------------------------------------------------------------- /step05/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/server.js -------------------------------------------------------------------------------- /step05/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/views/404.handlebars -------------------------------------------------------------------------------- /step05/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/views/error.handlebars -------------------------------------------------------------------------------- /step05/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/views/index.handlebars -------------------------------------------------------------------------------- /step05/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/views/layout.handlebars -------------------------------------------------------------------------------- /step05/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step05/views/upsert.handlebars -------------------------------------------------------------------------------- /step06/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/app.js -------------------------------------------------------------------------------- /step06/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/config.json -------------------------------------------------------------------------------- /step06/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/db.sqlite -------------------------------------------------------------------------------- /step06/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/models/index.js -------------------------------------------------------------------------------- /step06/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/models/order.js -------------------------------------------------------------------------------- /step06/models/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/models/spreadsheets.js -------------------------------------------------------------------------------- /step06/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/package-lock.json -------------------------------------------------------------------------------- /step06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/package.json -------------------------------------------------------------------------------- /step06/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/public/favicon.ico -------------------------------------------------------------------------------- /step06/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/public/script.js -------------------------------------------------------------------------------- /step06/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/public/styles.css -------------------------------------------------------------------------------- /step06/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/routes.js -------------------------------------------------------------------------------- /step06/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/server.js -------------------------------------------------------------------------------- /step06/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/views/404.handlebars -------------------------------------------------------------------------------- /step06/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/views/error.handlebars -------------------------------------------------------------------------------- /step06/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/views/index.handlebars -------------------------------------------------------------------------------- /step06/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/views/layout.handlebars -------------------------------------------------------------------------------- /step06/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step06/views/upsert.handlebars -------------------------------------------------------------------------------- /step07/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/app.js -------------------------------------------------------------------------------- /step07/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/config.json -------------------------------------------------------------------------------- /step07/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/db.sqlite -------------------------------------------------------------------------------- /step07/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/models/index.js -------------------------------------------------------------------------------- /step07/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/models/order.js -------------------------------------------------------------------------------- /step07/models/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/models/spreadsheets.js -------------------------------------------------------------------------------- /step07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/package-lock.json -------------------------------------------------------------------------------- /step07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/package.json -------------------------------------------------------------------------------- /step07/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/public/favicon.ico -------------------------------------------------------------------------------- /step07/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/public/script.js -------------------------------------------------------------------------------- /step07/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/public/styles.css -------------------------------------------------------------------------------- /step07/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/routes.js -------------------------------------------------------------------------------- /step07/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/server.js -------------------------------------------------------------------------------- /step07/sheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/sheets.js -------------------------------------------------------------------------------- /step07/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/views/404.handlebars -------------------------------------------------------------------------------- /step07/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/views/error.handlebars -------------------------------------------------------------------------------- /step07/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/views/index.handlebars -------------------------------------------------------------------------------- /step07/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/views/layout.handlebars -------------------------------------------------------------------------------- /step07/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step07/views/upsert.handlebars -------------------------------------------------------------------------------- /step08/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/app.js -------------------------------------------------------------------------------- /step08/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/config.json -------------------------------------------------------------------------------- /step08/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/db.sqlite -------------------------------------------------------------------------------- /step08/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/models/index.js -------------------------------------------------------------------------------- /step08/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/models/order.js -------------------------------------------------------------------------------- /step08/models/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/models/spreadsheets.js -------------------------------------------------------------------------------- /step08/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/package-lock.json -------------------------------------------------------------------------------- /step08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/package.json -------------------------------------------------------------------------------- /step08/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/public/favicon.ico -------------------------------------------------------------------------------- /step08/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/public/script.js -------------------------------------------------------------------------------- /step08/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/public/styles.css -------------------------------------------------------------------------------- /step08/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/routes.js -------------------------------------------------------------------------------- /step08/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/server.js -------------------------------------------------------------------------------- /step08/sheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/sheets.js -------------------------------------------------------------------------------- /step08/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/views/404.handlebars -------------------------------------------------------------------------------- /step08/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/views/error.handlebars -------------------------------------------------------------------------------- /step08/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/views/index.handlebars -------------------------------------------------------------------------------- /step08/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/views/layout.handlebars -------------------------------------------------------------------------------- /step08/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step08/views/upsert.handlebars -------------------------------------------------------------------------------- /step09/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/app.js -------------------------------------------------------------------------------- /step09/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/config.json -------------------------------------------------------------------------------- /step09/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/db.sqlite -------------------------------------------------------------------------------- /step09/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/models/index.js -------------------------------------------------------------------------------- /step09/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/models/order.js -------------------------------------------------------------------------------- /step09/models/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/models/spreadsheets.js -------------------------------------------------------------------------------- /step09/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/package-lock.json -------------------------------------------------------------------------------- /step09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/package.json -------------------------------------------------------------------------------- /step09/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/public/favicon.ico -------------------------------------------------------------------------------- /step09/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/public/script.js -------------------------------------------------------------------------------- /step09/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/public/styles.css -------------------------------------------------------------------------------- /step09/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/routes.js -------------------------------------------------------------------------------- /step09/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/server.js -------------------------------------------------------------------------------- /step09/sheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/sheets.js -------------------------------------------------------------------------------- /step09/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/views/404.handlebars -------------------------------------------------------------------------------- /step09/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/views/error.handlebars -------------------------------------------------------------------------------- /step09/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/views/index.handlebars -------------------------------------------------------------------------------- /step09/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/views/layout.handlebars -------------------------------------------------------------------------------- /step09/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step09/views/upsert.handlebars -------------------------------------------------------------------------------- /step10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/app.js -------------------------------------------------------------------------------- /step10/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/config.json -------------------------------------------------------------------------------- /step10/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/db.sqlite -------------------------------------------------------------------------------- /step10/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/models/index.js -------------------------------------------------------------------------------- /step10/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/models/order.js -------------------------------------------------------------------------------- /step10/models/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/models/spreadsheets.js -------------------------------------------------------------------------------- /step10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/package-lock.json -------------------------------------------------------------------------------- /step10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/package.json -------------------------------------------------------------------------------- /step10/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/public/favicon.ico -------------------------------------------------------------------------------- /step10/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/public/script.js -------------------------------------------------------------------------------- /step10/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/public/styles.css -------------------------------------------------------------------------------- /step10/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/routes.js -------------------------------------------------------------------------------- /step10/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/server.js -------------------------------------------------------------------------------- /step10/sheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/sheets.js -------------------------------------------------------------------------------- /step10/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/views/404.handlebars -------------------------------------------------------------------------------- /step10/views/error.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/views/error.handlebars -------------------------------------------------------------------------------- /step10/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/views/index.handlebars -------------------------------------------------------------------------------- /step10/views/layout.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/views/layout.handlebars -------------------------------------------------------------------------------- /step10/views/upsert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleworkspace/sheets-api-codelab/HEAD/step10/views/upsert.handlebars --------------------------------------------------------------------------------