├── .dockerignore ├── .eslintignore ├── .eslintrc.json ├── .gcloudignore ├── .gitignore ├── README.md ├── app.yaml ├── ci ├── build.dev.Dockerfile ├── build.gaestandard.cloudbuild.yaml ├── build.gcloudignore ├── build.production.Dockerfile ├── build.production.cloudbuild.yaml ├── deploy.gaestandard.app.yaml └── deploy.gaestandard.cloudbuild.yaml ├── components ├── Page.js ├── frame.js └── modal.js ├── next.config.js ├── package.json └── pages ├── 404.js ├── _app.js ├── _document.js ├── _error.js ├── artwork └── [artworkId].js └── index.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | build 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/app.yaml -------------------------------------------------------------------------------- /ci/build.dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/build.dev.Dockerfile -------------------------------------------------------------------------------- /ci/build.gaestandard.cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/build.gaestandard.cloudbuild.yaml -------------------------------------------------------------------------------- /ci/build.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/build.gcloudignore -------------------------------------------------------------------------------- /ci/build.production.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/build.production.Dockerfile -------------------------------------------------------------------------------- /ci/build.production.cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/build.production.cloudbuild.yaml -------------------------------------------------------------------------------- /ci/deploy.gaestandard.app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/deploy.gaestandard.app.yaml -------------------------------------------------------------------------------- /ci/deploy.gaestandard.cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/ci/deploy.gaestandard.cloudbuild.yaml -------------------------------------------------------------------------------- /components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/components/Page.js -------------------------------------------------------------------------------- /components/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/components/frame.js -------------------------------------------------------------------------------- /components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/components/modal.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | distDir: 'build' 3 | }; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/404.js -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/_error.js -------------------------------------------------------------------------------- /pages/artwork/[artworkId].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/artwork/[artworkId].js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blainegarrett/node-next-gae-demo/HEAD/pages/index.js --------------------------------------------------------------------------------