├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── next-example ├── .nowignore ├── README.md ├── components │ └── header.js ├── next.config.js ├── now.json ├── package-lock.json ├── package.json └── pages │ ├── about.js │ └── index.js ├── node-lambda-example ├── .gitignore ├── .nowignore ├── README.md ├── api │ ├── date.js │ └── emojis.js ├── now.json ├── package.json ├── www │ ├── index.html │ └── style.css └── yarn.lock ├── node-server-express-example ├── .env.sample ├── .eslintrc.js ├── .gitignore ├── README.md ├── now.json ├── package-lock.json ├── package.json ├── src │ ├── api │ │ ├── emojis.js │ │ └── index.js │ ├── app.js │ ├── index.js │ └── middlewares.js └── test │ ├── api.test.js │ └── app.test.js ├── static-build-example-react ├── .gitignore ├── .nowignore ├── README.md ├── now.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js ├── static-build-example-vue ├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── now.json ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── HelloWorld.vue │ ├── main.js │ ├── registerServiceWorker.js │ ├── router.js │ └── views │ │ ├── About.vue │ │ ├── Home.vue │ │ └── NotFound.vue └── vue.config.js └── static-example ├── cg-logo.png ├── index.html ├── now.json └── styles.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: CodingGardenWithCJ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/README.md -------------------------------------------------------------------------------- /next-example/.nowignore: -------------------------------------------------------------------------------- 1 | README.md 2 | .next 3 | node_modules 4 | -------------------------------------------------------------------------------- /next-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/README.md -------------------------------------------------------------------------------- /next-example/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/components/header.js -------------------------------------------------------------------------------- /next-example/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | target: 'serverless' 3 | } -------------------------------------------------------------------------------- /next-example/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/now.json -------------------------------------------------------------------------------- /next-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/package-lock.json -------------------------------------------------------------------------------- /next-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/package.json -------------------------------------------------------------------------------- /next-example/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/pages/about.js -------------------------------------------------------------------------------- /next-example/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/next-example/pages/index.js -------------------------------------------------------------------------------- /node-lambda-example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node-lambda-example/.nowignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /node-lambda-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/README.md -------------------------------------------------------------------------------- /node-lambda-example/api/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/api/date.js -------------------------------------------------------------------------------- /node-lambda-example/api/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/api/emojis.js -------------------------------------------------------------------------------- /node-lambda-example/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/now.json -------------------------------------------------------------------------------- /node-lambda-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/package.json -------------------------------------------------------------------------------- /node-lambda-example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/www/index.html -------------------------------------------------------------------------------- /node-lambda-example/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/www/style.css -------------------------------------------------------------------------------- /node-lambda-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-lambda-example/yarn.lock -------------------------------------------------------------------------------- /node-server-express-example/.env.sample: -------------------------------------------------------------------------------- 1 | NODE_ENV=development -------------------------------------------------------------------------------- /node-server-express-example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/.eslintrc.js -------------------------------------------------------------------------------- /node-server-express-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/.gitignore -------------------------------------------------------------------------------- /node-server-express-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/README.md -------------------------------------------------------------------------------- /node-server-express-example/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/now.json -------------------------------------------------------------------------------- /node-server-express-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/package-lock.json -------------------------------------------------------------------------------- /node-server-express-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/package.json -------------------------------------------------------------------------------- /node-server-express-example/src/api/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/src/api/emojis.js -------------------------------------------------------------------------------- /node-server-express-example/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/src/api/index.js -------------------------------------------------------------------------------- /node-server-express-example/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/src/app.js -------------------------------------------------------------------------------- /node-server-express-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/src/index.js -------------------------------------------------------------------------------- /node-server-express-example/src/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/src/middlewares.js -------------------------------------------------------------------------------- /node-server-express-example/test/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/test/api.test.js -------------------------------------------------------------------------------- /node-server-express-example/test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/node-server-express-example/test/app.test.js -------------------------------------------------------------------------------- /static-build-example-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/.gitignore -------------------------------------------------------------------------------- /static-build-example-react/.nowignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules -------------------------------------------------------------------------------- /static-build-example-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/README.md -------------------------------------------------------------------------------- /static-build-example-react/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/now.json -------------------------------------------------------------------------------- /static-build-example-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/package-lock.json -------------------------------------------------------------------------------- /static-build-example-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/package.json -------------------------------------------------------------------------------- /static-build-example-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/public/favicon.ico -------------------------------------------------------------------------------- /static-build-example-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/public/index.html -------------------------------------------------------------------------------- /static-build-example-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/public/manifest.json -------------------------------------------------------------------------------- /static-build-example-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/App.css -------------------------------------------------------------------------------- /static-build-example-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/App.js -------------------------------------------------------------------------------- /static-build-example-react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/App.test.js -------------------------------------------------------------------------------- /static-build-example-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/index.css -------------------------------------------------------------------------------- /static-build-example-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/index.js -------------------------------------------------------------------------------- /static-build-example-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/logo.svg -------------------------------------------------------------------------------- /static-build-example-react/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-react/src/serviceWorker.js -------------------------------------------------------------------------------- /static-build-example-vue/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /static-build-example-vue/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/.eslintrc.js -------------------------------------------------------------------------------- /static-build-example-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/.gitignore -------------------------------------------------------------------------------- /static-build-example-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/README.md -------------------------------------------------------------------------------- /static-build-example-vue/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/babel.config.js -------------------------------------------------------------------------------- /static-build-example-vue/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/now.json -------------------------------------------------------------------------------- /static-build-example-vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/package-lock.json -------------------------------------------------------------------------------- /static-build-example-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/package.json -------------------------------------------------------------------------------- /static-build-example-vue/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/postcss.config.js -------------------------------------------------------------------------------- /static-build-example-vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/favicon.ico -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /static-build-example-vue/public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static-build-example-vue/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/index.html -------------------------------------------------------------------------------- /static-build-example-vue/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/public/manifest.json -------------------------------------------------------------------------------- /static-build-example-vue/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /static-build-example-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/App.vue -------------------------------------------------------------------------------- /static-build-example-vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/assets/logo.png -------------------------------------------------------------------------------- /static-build-example-vue/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /static-build-example-vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/main.js -------------------------------------------------------------------------------- /static-build-example-vue/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/registerServiceWorker.js -------------------------------------------------------------------------------- /static-build-example-vue/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/router.js -------------------------------------------------------------------------------- /static-build-example-vue/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/views/About.vue -------------------------------------------------------------------------------- /static-build-example-vue/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/views/Home.vue -------------------------------------------------------------------------------- /static-build-example-vue/src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-build-example-vue/src/views/NotFound.vue -------------------------------------------------------------------------------- /static-build-example-vue/vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | productionSourceMap: false 3 | }; -------------------------------------------------------------------------------- /static-example/cg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-example/cg-logo.png -------------------------------------------------------------------------------- /static-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-example/index.html -------------------------------------------------------------------------------- /static-example/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-example/now.json -------------------------------------------------------------------------------- /static-example/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/deploy-with-now-v2/HEAD/static-example/styles.css --------------------------------------------------------------------------------