├── .gitignore ├── acm ├── README.md └── serverless.yml ├── angularjs-cloudfront-aws-serverless-app ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package.json ├── resources │ ├── custom.yml │ ├── general-output.yml │ └── general.yml ├── scripts │ └── deploy.bash ├── serverless.yml ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── apikeys ├── README.md ├── cloudformation │ └── ApiKeyDemoStack.yml └── sls │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── appsync-code-challenge └── readme.md ├── appsync-subscriptions ├── 01_withoutAuth │ ├── back │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── serverless.yml │ │ └── src │ │ │ ├── handler.js │ │ │ ├── mapping-templates │ │ │ ├── db │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ ├── lambda │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── none │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── utils │ │ │ ├── db.js │ │ │ ├── emit.js │ │ │ └── triggerSubscription.js │ └── front │ │ ├── .gitignore │ │ ├── lib │ │ └── Auth.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ │ └── App │ │ │ │ ├── Container.js │ │ │ │ ├── PresentationEmpty.js │ │ │ │ ├── PresentationError.js │ │ │ │ ├── PresentationLoading.js │ │ │ │ └── PresentationSuccess.js │ │ └── serviceWorker.js │ │ └── yarn.lock ├── 02_withAuth │ ├── back │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── serverless.yml │ │ └── src │ │ │ ├── handler.js │ │ │ ├── mapping-templates │ │ │ ├── db │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── lambda │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── utils │ │ │ ├── db.js │ │ │ ├── emit.js │ │ │ └── triggerSubscription.js │ └── front │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── index.css │ │ ├── index.js │ │ ├── lib │ │ │ └── Auth.js │ │ ├── pages │ │ │ └── App │ │ │ │ ├── Container.js │ │ │ │ ├── PresentationEmpty.js │ │ │ │ ├── PresentationError.js │ │ │ │ ├── PresentationLoading.js │ │ │ │ └── PresentationSuccess.js │ │ └── serviceWorker.js │ │ └── yarn.lock ├── 03_dbTrigger │ ├── back │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── serverless.yml │ │ └── src │ │ │ ├── handlers │ │ │ ├── appsyncFunctions.js │ │ │ ├── longRunningFunction.js │ │ │ └── triggerSubscription.js │ │ │ ├── mapping-templates │ │ │ ├── lambda │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── none │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ │ └── utils │ │ │ ├── db.js │ │ │ ├── emit.js │ │ │ └── triggerSubscription.js │ └── front │ │ ├── .gitignore │ │ ├── lib │ │ └── Auth.js │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ │ └── App │ │ │ │ ├── Container.js │ │ │ │ ├── PresentationEmpty.js │ │ │ │ ├── PresentationError.js │ │ │ │ ├── PresentationLoading.js │ │ │ │ └── PresentationSuccess.js │ │ └── serviceWorker.js │ │ └── yarn.lock └── README.md ├── azure-serverless-web-app ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── angular.json ├── api │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── hello-get │ │ ├── function.json │ │ └── index.js │ ├── host.json │ └── package.json ├── browserslist ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── bash-scripts ├── deploy-all │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── resources │ │ ├── api │ │ │ └── serverless.yml │ │ └── cognito │ │ │ └── serverless.yml │ ├── scripts │ │ ├── deployAllResources.bash │ │ ├── deployAllServices.bash │ │ └── removeAllServices.bash │ └── services │ │ ├── billing │ │ ├── handler.js │ │ └── serverless.yml │ │ ├── feed │ │ ├── handler.js │ │ └── serverless.yml │ │ └── user │ │ ├── handler.js │ │ └── serverless.yml └── less-than-5mb-zip │ ├── .gitignore │ ├── README.md │ ├── checkZipSize.bash │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml ├── bitbucket-pipeline-strategy ├── .gitignore ├── README.md ├── bitbucket-pipelines.yml ├── deploy.bash ├── package-lock.json ├── package.json ├── serverless.yml ├── serviceA │ ├── .gitignore │ ├── _tests │ │ └── index.test.js │ ├── db │ │ └── index.js │ ├── handler.js │ ├── package-lock.json │ └── package.json └── serviceB │ ├── .gitignore │ ├── _tests │ └── index.test.js │ ├── handler.js │ ├── package-lock.json │ └── package.json ├── bitbucket-to-github-mirror ├── .gitignore ├── Dockerfile ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── serverless.yml └── test-service │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ └── index.spec.js │ ├── index.js │ ├── package.json │ └── serverless.yml ├── c-sharp-layer ├── Functions │ ├── Hello.cs │ ├── Scheduled.cs │ └── Util.cs ├── aws-csharp.csproj ├── build.cmd ├── build.sh ├── layer │ └── layer.dll ├── package-lock.json ├── package.json ├── readme.md └── serverless.yml ├── cdk-lambda-deployment ├── .gitignore ├── .npmignore ├── README.md ├── bin │ └── cdk-lambda-deployment.js ├── cdk.json ├── jest.config.js ├── lib │ └── cdk-lambda-deployment-stack.js ├── package-lock.json ├── package.json ├── src │ └── index.js └── tsconfig.json ├── cicd ├── bitbucket-pipelines │ └── x.yml ├── cicd-iam-user │ ├── README.md │ ├── example .env │ ├── scripts │ │ ├── deploy.bash │ │ └── remove.bash │ └── serverless.yml ├── code-build │ └── x.yml ├── github-actions-oidc │ ├── README.md │ ├── deploy.yml │ └── teardown.yml └── github-actions │ ├── sls-dev-deploy.yml │ └── sls-dev-prod.yml ├── cloudfront-samples ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode │ ├── settings.json │ └── template.code-workspace ├── README.md ├── config │ └── stages │ │ ├── dev.sample.yml │ │ └── production.sample.yml ├── events │ └── .gitkeep ├── helpers │ └── main.js ├── outputs │ └── .gitkeep ├── package-lock.json ├── package.json ├── resources │ ├── .gitkeep │ ├── Cloudfront │ │ ├── Functions │ │ │ ├── index.yml │ │ │ ├── locale.yml │ │ │ └── private.yml │ │ ├── app.yml │ │ ├── corsResponsePolicy.yml │ │ ├── countryCachePolicy.yml │ │ ├── localeCachePolicy.yml │ │ └── originAccessControl.yml │ ├── DynamoDB │ │ └── demoContent.yml │ └── S3 │ │ ├── assets.yml │ │ ├── assetsPolicy.yml │ │ ├── website.yml │ │ └── websitePolicy.yml ├── serverless.edge.iam.yml ├── serverless.edge.yml ├── serverless.iam.yml ├── serverless.yml ├── src │ ├── .eslintrc │ ├── @types │ │ └── .gitkeep │ ├── controllers │ │ ├── .gitkeep │ │ └── hello.ts │ ├── handlers │ │ ├── .gitkeep │ │ ├── country.ts │ │ ├── fct.country.yml │ │ ├── fct.inspect.yml │ │ └── inspect.ts │ ├── lambdaEdge │ │ ├── getObject.ts │ │ ├── originResponse.ts │ │ └── serverless.yml │ ├── services │ │ └── .gitkeep │ └── shared │ │ └── utils │ │ └── .gitkeep └── tsconfig.json ├── code-challenge ├── README.md ├── src │ └── handlers │ │ └── index.js └── template.yaml ├── common-strategies ├── avoidNestedChecks.md ├── httpRequestHelperFile.md ├── httpResponseHelperFile.md └── mySQLHelperFunction.md ├── custom-domain-apig ├── .gitignore ├── README.md ├── base-api │ ├── index.js │ └── serverless.yml ├── cdn │ └── serverless.yml └── serviceA │ ├── index.js │ └── serverless.yml ├── custom-lambda-authorizer ├── README.md ├── cognito-access-token │ └── authorizer.js ├── cognito-id-token │ └── authorizer.js ├── package-lock.json ├── package.json ├── params.yml ├── serverless.yml └── test.js ├── datapipeline ├── dynamodb-to-s3 │ └── serverless.yml └── sls-glue-s3-rds │ ├── README.md │ ├── glue │ └── serverless.yml │ ├── package-lock.json │ ├── package.json │ ├── rds │ └── serverless.yml │ └── s3 │ └── serverless.yml ├── elk-extension ├── README.md ├── extensions-api.yaml ├── layers │ ├── elk │ │ ├── elk-extension │ │ │ ├── destinations │ │ │ │ ├── index.js │ │ │ │ └── s3.js │ │ │ ├── extensions-api.js │ │ │ ├── http-server.js │ │ │ ├── index.js │ │ │ ├── logs-api.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── extensions │ │ │ └── elk-extension │ └── serverless.yml ├── package.json ├── scripts │ └── invoke.bash ├── serverless.yml └── src │ └── handlers │ └── example.js ├── errorhandling └── README.md ├── full-stack-app-components ├── express │ ├── README.md │ └── serverless.yml ├── slspro │ └── serverless.yml └── website │ └── serverless.yml ├── functional-programming └── gettingValues │ ├── 01_firstWay.js │ ├── 02_longSafeWay.js │ ├── 03_longSafeWay.js │ ├── 04_shortSafeWay.js │ ├── 05_fpService │ ├── _tests │ │ └── utils.test.js │ ├── index.js │ ├── package.json │ └── utils.js │ ├── 06_ramda │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json │ └── README.md ├── generic-cloudfront-aws-serverless-app ├── README.md ├── package.json ├── resources │ ├── custom.yml │ ├── general-output.yml │ └── general.yml ├── scripts │ └── deploy.bash └── serverless.yml ├── graphql-mock ├── .gitignore ├── README.md ├── graphql-mock-architecture.png ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── functions │ ├── graphql │ │ └── handler.js │ ├── service-a │ │ ├── handler.js │ │ ├── mocks │ │ │ ├── active.js │ │ │ ├── default.js │ │ │ └── inactive.js │ │ └── schema.graphql │ └── utils │ │ └── mocks.js │ └── graphql │ ├── mocks.js │ ├── schema.graphql │ └── server.js ├── hugo-multi-repo-documentation ├── .vscode │ ├── extensions.json │ └── settings.json ├── Readme.md ├── hosting │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── .nvmrc │ ├── .nvmrc copy │ ├── .prettierignore │ ├── .prettierrc │ ├── buildspec.yml │ ├── package-lock.json │ ├── package.json │ ├── resources │ │ ├── serverless.iam.yml │ │ └── serverless.yml │ ├── serverless.yml │ ├── src │ │ └── handlers │ │ │ ├── .gitkeep │ │ │ ├── protect.ts │ │ │ └── serverless.yml │ └── tsconfig.json ├── mainRepo │ ├── .gitignore │ ├── buildspec.yml │ ├── config.toml │ ├── content │ │ ├── _index.md │ │ ├── documentation │ │ │ ├── _index.md │ │ │ ├── content.md │ │ │ ├── deploy.md │ │ │ ├── pages.md │ │ │ ├── services.md │ │ │ └── theme.md │ │ └── services │ │ │ ├── _index.md │ │ │ ├── cicd │ │ │ ├── _index.md │ │ │ ├── deploy-repo.md │ │ │ ├── pre-requisites.md │ │ │ └── setup.md │ │ │ └── dns │ │ │ └── _index.md │ ├── data │ │ └── menu │ │ │ ├── .gitkeep │ │ │ └── more.yml │ ├── go.mod │ ├── layouts │ │ └── shortcodes │ │ │ ├── .gitkeep │ │ │ └── pageprops.html │ ├── static │ │ └── custom.css │ └── themes │ │ └── hugo-geekdoc │ │ ├── .linkcheckignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── archetypes │ │ ├── default.md │ │ ├── docs.md │ │ └── posts.md │ │ ├── assets │ │ ├── search │ │ │ ├── config.json │ │ │ └── data.json │ │ └── sprites │ │ │ └── geekdoc.svg │ │ ├── data │ │ └── assets.json │ │ ├── i18n │ │ ├── cs.yaml │ │ ├── de.yaml │ │ ├── en.yaml │ │ ├── it.yaml │ │ ├── ja.yaml │ │ └── zh-cn.yaml │ │ ├── images │ │ ├── readme.png │ │ ├── screenshot.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── _markup │ │ │ │ ├── render-codeblock-mermaid.html │ │ │ │ ├── render-heading.html │ │ │ │ ├── render-image.html │ │ │ │ └── render-link.html │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ ├── single.html │ │ │ ├── taxonomy.html │ │ │ └── terms.html │ │ ├── partials │ │ │ ├── foot.html │ │ │ ├── head │ │ │ │ ├── custom.html │ │ │ │ ├── favicons.html │ │ │ │ ├── meta.html │ │ │ │ ├── microformats.html │ │ │ │ ├── others.html │ │ │ │ └── rel-me.html │ │ │ ├── language.html │ │ │ ├── menu-bundle.html │ │ │ ├── menu-extra.html │ │ │ ├── menu-filetree.html │ │ │ ├── menu-nextprev.html │ │ │ ├── menu.html │ │ │ ├── microformats │ │ │ │ ├── opengraph.html │ │ │ │ ├── schema.html │ │ │ │ └── twitter_cards.html │ │ │ ├── page-header.html │ │ │ ├── posts │ │ │ │ └── metadata.html │ │ │ ├── search.html │ │ │ ├── site-footer.html │ │ │ ├── site-header.html │ │ │ ├── svg-icon-symbols.html │ │ │ └── utils │ │ │ │ ├── content.html │ │ │ │ ├── description.html │ │ │ │ ├── featured.html │ │ │ │ └── title.html │ │ ├── posts │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── robots.txt │ │ └── shortcodes │ │ │ ├── button.html │ │ │ ├── columns.html │ │ │ ├── expand.html │ │ │ ├── hint.html │ │ │ ├── icon.html │ │ │ ├── img.html │ │ │ ├── include.html │ │ │ ├── katex.html │ │ │ ├── mermaid.html │ │ │ ├── propertylist.html │ │ │ ├── tab.html │ │ │ ├── tabs.html │ │ │ ├── toc-tree.html │ │ │ └── toc.html │ │ ├── static │ │ ├── brand.svg │ │ ├── custom.css │ │ ├── favicon │ │ │ ├── android-chrome-144x144.png │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-256x256.png │ │ │ ├── android-chrome-36x36.png │ │ │ ├── android-chrome-384x384.png │ │ │ ├── android-chrome-48x48.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── android-chrome-72x72.png │ │ │ ├── android-chrome-96x96.png │ │ │ ├── apple-touch-icon-1024x1024.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-167x167.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── apple-touch-startup-image-1125x2436.png │ │ │ ├── apple-touch-startup-image-1136x640.png │ │ │ ├── apple-touch-startup-image-1170x2532.png │ │ │ ├── apple-touch-startup-image-1242x2208.png │ │ │ ├── apple-touch-startup-image-1242x2688.png │ │ │ ├── apple-touch-startup-image-1284x2778.png │ │ │ ├── apple-touch-startup-image-1334x750.png │ │ │ ├── apple-touch-startup-image-1536x2048.png │ │ │ ├── apple-touch-startup-image-1620x2160.png │ │ │ ├── apple-touch-startup-image-1668x2224.png │ │ │ ├── apple-touch-startup-image-1668x2388.png │ │ │ ├── apple-touch-startup-image-1792x828.png │ │ │ ├── apple-touch-startup-image-2048x1536.png │ │ │ ├── apple-touch-startup-image-2048x2732.png │ │ │ ├── apple-touch-startup-image-2160x1620.png │ │ │ ├── apple-touch-startup-image-2208x1242.png │ │ │ ├── apple-touch-startup-image-2224x1668.png │ │ │ ├── apple-touch-startup-image-2388x1668.png │ │ │ ├── apple-touch-startup-image-2436x1125.png │ │ │ ├── apple-touch-startup-image-2532x1170.png │ │ │ ├── apple-touch-startup-image-2688x1242.png │ │ │ ├── apple-touch-startup-image-2732x2048.png │ │ │ ├── apple-touch-startup-image-2778x1284.png │ │ │ ├── apple-touch-startup-image-640x1136.png │ │ │ ├── apple-touch-startup-image-750x1334.png │ │ │ ├── apple-touch-startup-image-828x1792.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-48x48.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ └── mstile-70x70.png │ │ ├── fonts │ │ │ ├── GeekdocIcons.woff │ │ │ ├── GeekdocIcons.woff2 │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── LiberationMono.woff │ │ │ ├── LiberationMono.woff2 │ │ │ ├── LiberationSans-Bold.woff │ │ │ ├── LiberationSans-Bold.woff2 │ │ │ ├── LiberationSans-BoldItalic.woff │ │ │ ├── LiberationSans-BoldItalic.woff2 │ │ │ ├── LiberationSans-Italic.woff │ │ │ ├── LiberationSans-Italic.woff2 │ │ │ ├── LiberationSans.woff │ │ │ ├── LiberationSans.woff2 │ │ │ ├── Metropolis.woff │ │ │ └── Metropolis.woff2 │ │ ├── img │ │ │ └── geekdoc-stack.svg │ │ ├── js │ │ │ ├── 116-9febb0f9.chunk.min.js │ │ │ ├── 273-00ecdf63.chunk.min.js │ │ │ ├── 273-00ecdf63.chunk.min.js.LICENSE.txt │ │ │ ├── katex-8d0741cb.bundle.min.js │ │ │ ├── main-902b82d5.bundle.min.js │ │ │ ├── main-902b82d5.bundle.min.js.LICENSE.txt │ │ │ ├── mermaid-b1066407.bundle.min.js │ │ │ ├── search-835dce8f.bundle.min.js │ │ │ └── search-835dce8f.bundle.min.js.LICENSE.txt │ │ ├── katex-fc2c11a4.min.css │ │ ├── main-a853cbfd.min.css │ │ ├── mobile-c0e18b0e.min.css │ │ └── print-19966b38.min.css │ │ └── theme.toml ├── repoA │ ├── documentation │ │ ├── _index.md │ │ ├── api │ │ │ ├── _index.md │ │ │ └── attributes.yml │ │ └── schema │ │ │ ├── _index.md │ │ │ └── schema.png │ ├── go.mod │ └── src │ │ └── index.ts └── repoB │ ├── documentation │ ├── _index.md │ ├── api │ │ ├── _index.md │ │ └── attributes.yml │ └── schema │ │ ├── _index.md │ │ └── schema.png │ ├── go.mod │ └── src │ └── index.ts ├── kafka-msk ├── .gitignore ├── README.md └── resources │ ├── client-machine │ ├── serverless.yml │ └── startup.sh │ ├── lambda │ ├── functions │ │ ├── msk-consumer │ │ │ └── index.js │ │ └── msk-producer │ │ │ ├── index.js │ │ │ └── msk-producer.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml │ ├── msk │ └── serverless.yml │ ├── ssm-parameter │ └── serverless.yml │ └── vpc │ └── serverless.yml ├── monolith-backend-aws-serverless-backend ├── .gitignore ├── README.md ├── package.json ├── serverless.yml └── src │ └── handlers │ └── api.js ├── newman-codebuild ├── .gitignore ├── README.md ├── buildspec.yml ├── docs │ ├── gotchas.md │ ├── newman-export.gif │ ├── test-console.png │ └── test-sample.png ├── package-lock.json ├── package.json ├── scripts │ └── test.bash ├── serverless.yml ├── src │ └── index.js └── tests │ └── test.postman_collection.json ├── nodejs-callbacksToAsyncAwait ├── README.md ├── assets │ ├── aa_01.png │ ├── aa_02.png │ ├── aa_03.png │ ├── cb_01.png │ ├── cb_02.png │ ├── cb_03.png │ ├── cb_e_01.png │ ├── cb_e_02.png │ ├── cb_e_03.png │ └── design.sketch └── code │ ├── 01_callbacksVsAsyncAwait │ ├── _promiseAwsExample.js │ ├── _tests │ │ ├── oneLevel.test.js │ │ ├── oneLevelError.test.js │ │ ├── threeLevel.test.js │ │ └── threeLevelWithError.test.js │ ├── aws.js │ ├── oneLevel.js │ ├── oneLevelWithError.js │ ├── threeLevels.js │ └── threeLevelsWithError.js │ ├── 02_makingFilesFlat │ ├── aws.js │ ├── index.js │ ├── refactorInsideOut │ │ ├── 01_start.js │ │ ├── 02_refactorUpcomingTrips.js │ │ ├── 03_refactorGetUser.js │ │ ├── 04_refactorLambda.js │ │ ├── 05_end.js │ │ └── _tests │ │ │ └── insideOut.test.js │ └── refactorOutsideIn │ │ ├── 01_start.js │ │ ├── 02_refactorLambda.js │ │ ├── 03_refactorGetUser.js │ │ ├── 04_refactorUpcomingTrips.js │ │ ├── 05_end.js │ │ └── _tests │ │ └── outsideIn.test.js │ ├── 03_testingCallbacks │ ├── _tests │ │ └── 01_testingFunctions.test.js │ └── index.js │ ├── 04_awsXray │ ├── .gitignore │ ├── README.md │ ├── handler.js │ ├── package.json │ └── serverless.yml │ └── package.json ├── nodejs-linting ├── .eslintrc.js ├── README.md ├── assets │ ├── function-size.png │ └── speedAndQualityStrategy.png ├── package-lock.json ├── package.json └── src │ ├── 01_noVars.js │ ├── 02_noConsoleLog.js │ ├── 03_maxCallbacks.js │ ├── 04_maxDepth.js │ └── 05_maxLines.js ├── private-npm-packages ├── README.md └── examples │ ├── privateNpmPackage │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── bitbucket-pipelines.yml │ ├── index.js │ ├── package.json │ └── tests │ │ └── index.test.js │ └── serviceThatUsesPrivateNpmPackage │ ├── .gitignore │ ├── README.md │ ├── bitbucket-pipelines.yml │ ├── package.json │ └── tests │ └── example.test.js ├── private-repositories ├── README.md ├── bitbucket-pipelines.yml └── package.json ├── reactjs-cloudfront-aws-serverless-app ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── resources │ ├── custom.yml │ ├── general-output.yml │ └── general.yml ├── scripts │ └── deploy.bash ├── serverless.yml └── yarn.lock ├── reuse-existing-api-gateway-stage ├── .gitignore ├── handler.js ├── readme.md └── serverless.yml ├── s3-remover ├── .gitignore ├── README.md ├── package-lock.json ├── package.json └── serverless.yml ├── s3-shared-bucket-artifacts ├── README.md ├── resources │ └── s3 │ │ └── serverless.yml └── services │ ├── serviceA │ ├── index.js │ └── serverless.yml │ ├── serviceB │ ├── index.js │ └── serverless.yml │ └── serviceC │ ├── index.js │ └── serverless.yml ├── sam-cloudwatch-dashboard-use-and-red-monitoring ├── .gitignore ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── api │ ├── .npmignore │ ├── app.mjs │ ├── package.json │ └── tests │ │ └── unit │ │ └── test-handler.mjs ├── docs │ └── dashboard.jpg ├── samconfig.toml ├── template.cloudwatch-dashboard.yaml └── template.yaml ├── sam-gradual-deployments-nodejs ├── .gitignore ├── README.md ├── events │ └── event.json ├── hello-world │ ├── .npmignore │ ├── app.js │ ├── package.json │ └── tests │ │ └── unit │ │ └── test-handler.js ├── samconfig.toml └── template.yaml ├── serverless-framework-appsync-example ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── schema.graphql ├── serverless.yml └── src │ ├── handlers │ └── notes.js │ └── mapping-templates │ ├── createNote │ └── request.vtl │ ├── deleteNote │ └── request.vtl │ ├── getNote │ └── request.vtl │ ├── getNoteById │ └── request.vtl │ ├── listNotes │ └── request.vtl │ ├── response.vtl │ └── updateNote │ └── request.vtl ├── ses-email-templates ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── index.js │ ├── templates │ └── example.yml │ └── tests │ └── exampleTest.js ├── sg-terraform-lambda-deploy ├── .gitignore ├── README.md ├── main.tf ├── outputs.tf ├── sg-demo │ └── demo.js └── variables.tf ├── sila-nodejs-aws-serverless-backend ├── .gitignore ├── main.js ├── package-lock.json ├── package.json └── serverless.yml ├── slack-lambda-notifications ├── README.md ├── functions │ └── index.js ├── package-lock.json ├── package.json └── serverless.yml ├── sls-alb ├── .gitignore ├── handler.js └── serverless.yml ├── sls-antipatterns ├── 01_lambdaCallLambda │ ├── .gitignore │ ├── README.md │ ├── diagram.png │ ├── handler.js │ ├── io.js │ └── serverless.yml ├── 02_sharedDatabases │ ├── README.md │ ├── assets │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ └── 04.png │ ├── service1WithDatabase │ │ ├── .gitignore │ │ ├── handler.js │ │ └── serverless.yml │ └── service2 │ │ ├── .gitignore │ │ ├── handler.js │ │ └── serverless.yml ├── 03_globalVariablesAsState │ ├── README.md │ ├── handler.js │ └── serverless.yml └── README.md ├── sls-api-gateway-custom-request-mapping ├── serverless.yml └── src │ └── index.js ├── sls-arch ├── 01_withRequire │ ├── 01_handler │ │ └── handler.js │ ├── 02_handlerHelper │ │ ├── handler.js │ │ └── helper.js │ ├── 03_handlerHelperFolder │ │ ├── handler.js │ │ ├── helper.js │ │ └── helper │ │ │ ├── db.js │ │ │ ├── errors.js │ │ │ └── http.js │ └── 04_handlerHelperLogic │ │ ├── .gitignore │ │ ├── handler.js │ │ └── serverless.yml ├── 02_withDependencyInjection │ ├── .gitignore │ ├── handler.js │ └── serverless.yml └── README.md ├── sls-awsglue ├── .gitignore ├── handler.js ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── db.js │ └── index.js ├── sls-bastion ├── .gitignore ├── README.md ├── connect.sh └── serverless.yml ├── sls-circuitbreaker ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── handler.js │ └── utils │ ├── _tests │ └── retry.test.js │ ├── http.js │ └── retry.js ├── sls-cloudtrail-pci-compliance ├── .gitignore ├── README.md ├── iam-groups-extra.yml ├── package-lock.json ├── package.json └── serverless.yml ├── sls-codebuild ├── README.md ├── __tests__ │ └── index.spec.js ├── buildspec.yml ├── index.js ├── package-lock.json ├── package.json ├── resources │ └── codepipeline │ │ ├── README.md │ │ └── serverless.yml └── serverless.yml ├── sls-cognito ├── README.md ├── api │ ├── .gitignore │ ├── handler.js │ └── serverless.yml ├── service1 │ ├── .gitignore │ ├── handler.js │ └── serverless.yml └── service2 │ ├── .gitignore │ ├── handler.js │ └── serverless.yml ├── sls-component-starter ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── README.md ├── examples │ ├── example .env │ └── serverless.yml ├── prettier.config.js ├── serverless.component.yml ├── src │ ├── package.json │ ├── serverless.js │ └── utils.js └── tutorial.md ├── sls-components-appsync-example ├── .gitignore ├── README.md ├── components │ ├── appsync │ │ ├── README.md │ │ ├── serverless.yml │ │ └── src │ │ │ ├── schema.graphql │ │ │ └── vtl │ │ │ ├── getUsers │ │ │ └── request.vtl │ │ │ ├── getUsersById │ │ │ └── request.vtl │ │ │ └── response.vtl │ ├── iam │ │ ├── README.md │ │ └── serverless.yml │ ├── lambda │ │ ├── README.md │ │ ├── serverless.yml │ │ └── src │ │ │ └── index.js │ └── layer │ │ ├── README.md │ │ ├── serverless.yml │ │ └── src │ │ └── nodejs │ │ ├── package-lock.json │ │ └── package.json ├── package.json └── scripts │ ├── deploy.bash │ └── setup.bash ├── sls-decoupling-apigateway-lambda ├── README.md ├── backendService │ ├── .gitignore │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── utils │ │ ├── db.js │ │ ├── emit.js │ │ └── externalService.js └── frontend │ ├── app.js │ └── index.html ├── sls-dynamic-config ├── 01_dynamic-value │ ├── .gitignore │ ├── handler.js │ └── serverless.yml ├── 02_dynamic-object │ ├── .gitignore │ ├── handler.js │ └── serverless.yml ├── 03_dynamic-file │ ├── .gitignore │ ├── handler.js │ ├── resources │ │ ├── dev.yml │ │ └── prod.yml │ └── serverless.yml ├── 04_complex │ ├── apigateway │ │ ├── .gitignore │ │ ├── handler.js │ │ └── serverless.yml │ ├── data-infra │ │ └── serverless.yml │ ├── network-infra │ │ └── serverless.yml │ ├── old-apigateway │ │ ├── .gitignore │ │ ├── handler.js │ │ └── serverless.yml │ ├── old-data-infra │ │ └── serverless.yml │ ├── old-network-infra │ │ └── serverless.yml │ └── service │ │ ├── handler.js │ │ ├── resources │ │ ├── crt.yml │ │ └── preprod.yml │ │ └── serverless.yml └── README.md ├── sls-dynamodb-global-tables ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── README.md ├── config │ └── iamRoleStatements.yml ├── events │ └── .gitkeep ├── lib │ ├── aws.js │ └── config.js ├── outputs │ └── .gitkeep ├── package-lock.json ├── package.json ├── resources │ ├── .gitkeep │ ├── api │ │ └── mapping.yml │ ├── domain │ │ ├── api.yml │ │ ├── cert.yml │ │ └── dns.yml │ └── dynamoDb │ │ └── comments.yml ├── serverless.yml ├── services │ ├── comments │ │ ├── get.js │ │ ├── get.yml │ │ ├── post.js │ │ └── post.yml │ ├── region.js │ └── region.yml ├── stages │ ├── dev.sample.yml │ └── production.sample.yml └── webpack.config.js ├── sls-dynamodb-integration-testing ├── .gitignore ├── README.md ├── jest-int.config.json ├── jest-unit.config.json ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── _tests │ └── handler.test.js │ ├── db │ ├── _tests │ │ ├── db.int-test.js │ │ └── utils │ │ │ └── seeder.js │ └── index.js │ └── handler.js ├── sls-dynatrace ├── 01_subfolders │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ │ └── handlers │ │ └── serviceA │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── 02_subfoldersAndLayers │ ├── .gitignore │ ├── layerDynatrace │ │ ├── package-lock.json │ │ └── package.json │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ │ └── handlers │ │ └── serviceA │ │ ├── .gitignore │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── 03_dynatraceLayersServerlessDashboard │ ├── monitoringLayer │ │ ├── layerDynatrace │ │ │ └── nodejs │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ └── serverless.yml │ └── service │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── serverless.yml │ │ └── src │ │ └── handlers │ │ └── serviceA │ │ ├── .gitignore │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json └── README.md ├── sls-e2e-fullstack ├── .github │ └── workflows │ │ └── front.yml ├── README.md ├── back │ ├── .gitignore │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml └── front │ ├── .gitignore │ ├── README.md │ ├── _tests │ ├── main.e2e-test.js │ └── main.test.js │ ├── config.json │ ├── jest-e2e.config.json │ ├── jest-unit.config.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── setupTests.js ├── sls-ec2-nginx-nlb ├── README.md ├── ec2 │ └── serverless.yml └── nlb │ └── serverless.yml ├── sls-esbuild ├── .github │ └── workflows │ │ └── main.yml ├── .gitignore ├── README.md ├── package.json ├── serverless.yml └── src │ └── handlers │ └── hello │ └── index.js ├── sls-eventbridge ├── .npmignore ├── README.md ├── handler.js └── serverless.yml ├── sls-fargate-eks ├── .gitignore ├── README.md ├── app │ ├── Dockerfile │ ├── README.md │ ├── index.js │ ├── package.json │ ├── resources │ │ ├── alb-ingress-controller.yml │ │ ├── cluster.yml │ │ ├── config-map.yml │ │ ├── deployment.yml │ │ ├── ingress.yml │ │ ├── namespace.yml │ │ ├── rbac-role.yml │ │ └── service.yml │ └── scripts │ │ ├── build-files.bash │ │ ├── deploy-ecr.bash │ │ ├── deploy.bash │ │ ├── install-eksctl.bash │ │ └── install-kubectl.bash └── infrastructure │ ├── README.md │ ├── ecr │ ├── README.md │ └── serverless.yml │ ├── eks │ ├── README.md │ ├── package.json │ ├── resources │ │ └── fargate-cluster.yml │ └── scripts │ │ ├── deploy.bash │ │ ├── install-eksctl.bash │ │ └── remove.bash │ ├── iam-user │ ├── README.md │ └── serverless.yml │ └── vpc-deprecated │ ├── resources │ └── vpc.yml │ └── serverless.yml ├── sls-feature-toggling ├── .gitignore ├── README.md ├── assets │ ├── design.sketch │ └── ftSteps.png ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── sls-fileupload ├── README.md ├── _exampleFiles │ ├── largePicture.jpg │ ├── picturePdf.pdf │ ├── textfile.rtf │ └── wordDoc.docx ├── back │ ├── .gitignore │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml └── front │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── HomePage.vue │ └── main.js │ └── yarn.lock ├── sls-finch-dynamic-build ├── README.md ├── back │ ├── .gitignore │ ├── handler.js │ └── serverless.yml └── front │ ├── .gitignore │ ├── buildWithEnv.bash │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ ├── src │ ├── index.html │ ├── index.js │ └── style.css │ └── webpack.config.js ├── sls-frontend-with-cicd ├── .gitignore ├── README.md ├── buildspecs │ ├── angular │ │ └── buildspec.yml │ ├── react │ │ └── buildspec.yml │ └── vue │ │ └── buildspec.yml ├── deploy.sh ├── functions │ └── handler.js ├── resources │ ├── buckets.yml │ ├── build.yml │ ├── events.yml │ ├── iam.yml │ ├── pipeline.yml │ └── repository.yml └── serverless.yml ├── sls-general ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── CODEREVIEW_CHECKLIST.md ├── CODING_STANDARDS.md ├── README.md ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── _tests │ ├── handlerErrorhandling.test.js │ ├── handlerLogic.test.js │ └── handlerValidation.test.js │ ├── handler.js │ ├── helpers │ ├── errors.js │ └── http.js │ └── io │ └── index.js ├── sls-gradual-deployments-csharp ├── .npmignore ├── aws-csharp.csproj ├── build.cmd ├── build.sh ├── functions │ ├── After.cs │ ├── Before.cs │ ├── Hello.cs │ └── Shared.cs ├── package-lock.json ├── package.json └── serverless.yml ├── sls-guardduty ├── .gitignore ├── README.md └── resources │ └── guardduty │ ├── package-lock.json │ ├── package.json │ └── serverless.yml ├── sls-iam-role └── serverless.yml ├── sls-image-endpoint ├── .gitignore ├── assets │ └── sky.png ├── handler.js └── serverless.yml ├── sls-image-resize ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── README.md ├── config │ └── iamRoleStatements.yml ├── events │ └── .gitkeep ├── lib │ ├── aws.js │ └── config.js ├── outputs │ └── .gitkeep ├── package-lock.json ├── package.json ├── resources │ ├── .gitkeep │ ├── CloudFront │ │ └── cache.yml │ └── S3Bucket │ │ ├── cache.yml │ │ └── originals.yml ├── serverless.yml ├── services │ ├── generate.js │ └── generate.yml ├── stages │ ├── dev.sample.yml │ └── production.sample.yml └── webpack.config.js ├── sls-img-processing ├── README.md ├── imageProcessingLayer │ ├── .gitignore │ ├── README.md │ ├── bitbucket-pipelines.yml │ ├── package-lock.json │ ├── package.json │ └── serverless.yml └── serviceA │ ├── .gitignore │ ├── bitbucket-pipelines.yml │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml ├── sls-jest ├── .gitignore ├── README.md ├── defining-a-testing-strategy │ ├── README.md │ └── code │ │ ├── .gitignore │ │ ├── _e2e │ │ ├── save.e2e-test.js │ │ └── utils │ │ │ └── seeder.js │ │ ├── jest-e2e.config.json │ │ ├── jest-int.config.json │ │ ├── jest-unit.config.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── serverless.yml │ │ └── src │ │ ├── _tests │ │ ├── willHandleExternalErrors.test.js │ │ ├── willSaveHighlighted.test.js │ │ └── willValidate.test.js │ │ ├── db │ │ ├── _tests │ │ │ ├── db.int-test.js │ │ │ └── utils │ │ │ │ └── seeder.js │ │ └── index.js │ │ └── handler.js ├── e2e-apigateway-apikey │ ├── README.md │ ├── bitbucket-pipelines.yml │ └── code │ │ ├── .gitignore │ │ ├── _e2e │ │ └── test.e2e-test.js │ │ ├── jest-e2e.config.json │ │ ├── jest-int.config.json │ │ ├── jest-unit.config.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── serverless.yml │ │ └── src │ │ ├── _test │ │ ├── example.int-test.js │ │ └── example.test.js │ │ └── handler.js ├── e2e-appsync-iam │ ├── README.md │ ├── bitbucket-pipelines.yml │ └── code │ │ ├── .gitignore │ │ ├── _e2e │ │ ├── test.e2e-test.js │ │ └── utils │ │ │ └── callAppsync.js │ │ ├── jest-e2e.config.json │ │ ├── jest-int.config.json │ │ ├── jest-unit.config.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── serverless.yml │ │ ├── src │ │ ├── _test │ │ │ ├── example.int-test.js │ │ │ └── example.test.js │ │ ├── handler.js │ │ ├── mapping-templates │ │ │ ├── request.vtl │ │ │ └── response.vtl │ │ └── schema.graphql │ │ └── yarn.lock ├── env-vars │ ├── .gitignore │ ├── README.md │ ├── jest │ │ └── setEnvVars.js │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ │ └── handlers │ │ ├── _tests │ │ └── index.test.js │ │ └── index.js ├── jest-mocking │ ├── 01_jestFn │ │ ├── 01_moduleExport │ │ │ ├── _tests │ │ │ │ └── moduleExport.test.js │ │ │ └── src │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ ├── 02_moduleFunction │ │ │ ├── _tests │ │ │ │ └── modueFunction.test.js │ │ │ └── src │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ ├── 03_moduleExportClass │ │ │ ├── _tests │ │ │ │ └── moduleClass.test.js │ │ │ └── src │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ └── 04_moduleFunctionClass │ │ │ ├── _tests │ │ │ └── modueFunctionClass.test.js │ │ │ └── src │ │ │ ├── codeToMock.js │ │ │ └── index.js │ ├── 02_mockFolder │ │ ├── 01_moduleExport │ │ │ ├── _tests │ │ │ │ └── mockModuleExport.test.js │ │ │ └── src │ │ │ │ ├── __mocks__ │ │ │ │ └── codeToMock.js │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ ├── 02_moduleFunction │ │ │ ├── _tests │ │ │ │ └── mockModuleFunction.test.js │ │ │ └── src │ │ │ │ ├── __mocks__ │ │ │ │ └── codeToMock.js │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ ├── 03_moduleExportClass │ │ │ ├── _tests │ │ │ │ └── mockModuleClass.test.js │ │ │ └── src │ │ │ │ ├── __mocks__ │ │ │ │ └── codeToMock.js │ │ │ │ ├── codeToMock.js │ │ │ │ └── index.js │ │ └── 04_moduleFunctionClass │ │ │ ├── _tests │ │ │ └── mockModuleFunctionClass.test.js │ │ │ └── src │ │ │ ├── __mocks__ │ │ │ └── codeToMock.js │ │ │ ├── codeToMock.js │ │ │ └── index.js │ ├── README.md │ ├── package-lock.json │ └── package.json ├── mocking-aws-sdk │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ │ └── handlers │ │ ├── _tests │ │ └── index.test.js │ │ └── index.js └── testing-walkthrough │ ├── 01-how-to-use-jest │ ├── README.md │ └── intro-to-jest │ │ ├── README.md │ │ ├── end │ │ ├── .gitignore │ │ ├── package.json │ │ └── src │ │ │ ├── _tests │ │ │ └── getCoffee.test.js │ │ │ └── index.js │ │ └── start │ │ ├── .gitignore │ │ ├── package.json │ │ └── src │ │ ├── _tests │ │ └── getCoffee.test.js │ │ └── index.js │ ├── 02-how-to-write-testable-code │ ├── README.md │ ├── addingCodeToExistingProject │ │ ├── README.md │ │ ├── end │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── _tests │ │ │ │ └── addDaysLeft.test.js │ │ │ │ ├── index.js │ │ │ │ ├── tripDb.js │ │ │ │ └── userSession.js │ │ └── start │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── _tests │ │ │ └── addDaysLeft.test.js │ │ │ ├── index.js │ │ │ ├── tripDb.js │ │ │ └── userSession.js │ └── mocking │ │ ├── README.md │ │ └── assets │ │ ├── mocking-1.png │ │ ├── mocking-2.png │ │ ├── mocking-3.png │ │ ├── mocking-4.png │ │ └── mocking-5.png │ ├── 03-how-to-test-external-services │ ├── 01_howPortsAndAdaptorsCanHelpWithMocking │ │ ├── README.md │ │ └── assets │ │ │ ├── paa-1.png │ │ │ ├── paa-2.png │ │ │ ├── paa-3.png │ │ │ ├── paa-4.png │ │ │ ├── paa-5.png │ │ │ ├── paa-concept-1.png │ │ │ └── paa-concept-2.png │ ├── 02_testingExternalResourcesExample │ │ ├── README.md │ │ └── code │ │ │ ├── resources │ │ │ └── db │ │ │ │ ├── .gitignore │ │ │ │ └── serverless.yml │ │ │ └── services │ │ │ └── addProduct │ │ │ ├── serverless.yml │ │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── domain │ │ │ ├── _tests │ │ │ │ └── example.test.js │ │ │ └── index.js │ │ │ ├── handler.js │ │ │ ├── io │ │ │ ├── _tests │ │ │ │ └── addProduct.integration-test.js │ │ │ ├── index.js │ │ │ ├── mock.js │ │ │ └── real.js │ │ │ ├── jest-integration.config.json │ │ │ ├── jest-unit.config.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ └── README.md │ └── README.md ├── sls-knownIssues └── README.md ├── sls-lambda-component ├── .gitignore ├── serverless.yml └── src │ ├── api.js │ ├── package-lock.json │ └── package.json ├── sls-lambda-function-url ├── .gitignore ├── README.md ├── handler.js └── serverless.yml ├── sls-lambda-warmer ├── README.md ├── package-lock.json ├── package.json ├── serverless.yml └── src │ └── index.js ├── sls-local-mysql ├── code │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _tests │ │ └── insert.test.js │ │ ├── db.js │ │ └── index.js └── docker │ ├── Dockerfile │ ├── README.md │ └── database-setup.sql ├── sls-mediapipeline ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode │ ├── settings.json │ └── template.code-workspace ├── README.md ├── config │ └── stages │ │ ├── dev.sample.yml │ │ └── production.sample.yml ├── helpers │ └── main.js ├── outputs │ └── .gitkeep ├── package-lock.json ├── package.json ├── resources │ ├── .gitkeep │ ├── Cloudfront │ │ ├── assets.yml │ │ └── oac.yml │ ├── DynamoDb │ │ └── video.yml │ ├── EventBridge │ │ ├── invokeStateRole.yml │ │ ├── ruleConvert.yml │ │ └── rulePackage.yml │ ├── LogGroup │ │ ├── stepConvert.yml │ │ └── stepSmil.yml │ ├── MediaPackage │ │ ├── PackagingConfiguration │ │ │ ├── dash.yml │ │ │ └── hls.yml │ │ └── packagingGroup.yml │ ├── Role │ │ ├── mediaConvert.yml │ │ └── mediaPackage.yml │ └── S3Bucket │ │ ├── incoming.yml │ │ ├── mezzanine.yml │ │ └── mezzaninePolicy.yml ├── serverless.iam.yml ├── serverless.yml ├── src │ ├── .eslintrc │ ├── @types │ │ ├── .gitkeep │ │ ├── global.d.ts │ │ ├── local.d.ts │ │ └── utils.d.ts │ ├── controllers │ │ ├── .gitkeep │ │ ├── mediaconvert.ts │ │ ├── mediapackage.ts │ │ └── smil.ts │ ├── handlers │ │ ├── analyze.ts │ │ ├── fct.analyze.yml │ │ ├── fct.mediaconvert.yml │ │ ├── fct.mediapackage.yml │ │ ├── fct.name.yml │ │ ├── fct.renditionDetail.yml │ │ ├── fct.smil.yml │ │ ├── fct.stillDetail.yml │ │ ├── mediaconvert.ts │ │ ├── mediapackage.ts │ │ ├── name.ts │ │ ├── renditionDetail.ts │ │ ├── smil.ts │ │ └── stillDetail.ts │ ├── services │ │ └── .gitkeep │ └── shared │ │ └── templates │ │ └── mediaconvert.ts ├── stepFunctions │ ├── convert.yml │ ├── package.yml │ └── package │ │ ├── frames.yml │ │ ├── mp4.yml │ │ └── smil.yml └── tsconfig.json ├── sls-mysql-integration-testing ├── README.md ├── code │ ├── .gitignore │ ├── jest-int.config.json │ ├── jest-unit.config.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _tests │ │ └── insert.int-test.js │ │ ├── db.js │ │ └── index.js └── docker │ ├── Dockerfile │ ├── README.md │ └── database-setup.sql ├── sls-mysql ├── .gitignore ├── serverless.yml ├── withEnhancedMonitoring │ └── serverless.yml └── withPerformanceInsights │ ├── v5.6 │ └── serverless.yml │ └── v5.7 │ └── serverless.yml ├── sls-nlb-privateapi ├── README.md └── serverless.yml ├── sls-performancetesting ├── 01_simple │ ├── dashboard │ │ ├── .gitignore │ │ ├── dashboard.json │ │ ├── handler.js │ │ └── serverless.yml │ ├── performanceTesting │ │ ├── artillery │ │ │ ├── .slsart │ │ │ ├── alert.js │ │ │ ├── analysis.js │ │ │ ├── artillery-acceptance.js │ │ │ ├── artillery-monitoring.js │ │ │ ├── artillery-performance.js │ │ │ ├── artillery-task.js │ │ │ ├── handler.js │ │ │ ├── modes.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── planning.js │ │ │ ├── platform-settings.js │ │ │ ├── sampling.js │ │ │ ├── script.yml │ │ │ └── serverless.yml │ │ ├── package.json │ │ └── seeder │ │ │ ├── cleanup.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── seed.js │ └── service │ │ ├── .gitignore │ │ ├── db │ │ └── index.js │ │ ├── handler.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── serverless.yml └── notes.md ├── sls-pinpoint ├── .gitignore ├── handler.js └── serverless.yml ├── sls-pro-helper-scripts ├── .gitignore ├── README.md ├── example .env.insert ├── images │ ├── newToken.png │ ├── profileIdTo.png │ ├── slsOrg.png │ └── tokenMenu.png ├── index.js └── package.json ├── sls-prune ├── README.md ├── index.js ├── package-lock.json ├── package.json └── serverless.yml ├── sls-rds-proxy ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── rds │ └── serverless.yml ├── serverless.yml ├── sg │ └── serverless.yml └── src │ └── handler.js ├── sls-rest-to-http ├── README.md ├── client │ ├── .gitignore │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml └── service │ ├── .gitignore │ ├── handler.js │ ├── serverless.yml │ └── src │ ├── domain │ └── index.js │ └── handler.js ├── sls-s3deploy ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── serverless.yml └── slsguruIPSet.txt ├── sls-service-proxy ├── .gitignore ├── README.md ├── package.json └── serverless.yml ├── sls-sqsfifo-to-rds-mysql ├── README.md ├── artillery │ └── script.yml ├── common │ └── loadSecretKey.js ├── index.js ├── package.json └── serverless.yml ├── sls-standard-starter ├── .gitignore ├── README.md ├── resources │ └── api │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── serverless.yml └── services │ └── countCharacters │ ├── handlers │ └── index.js │ └── serverless.yml ├── sls-step-functions ├── .npmignore ├── README.md ├── functions │ ├── add.js │ ├── multiply.js │ ├── subtract.js │ └── validateResult.js ├── package-lock.json ├── package.json └── serverless.yml ├── sls-test-pyramid-vpc ├── README.md ├── bitbucket-pipelines.yml ├── code │ ├── .gitignore │ ├── _tests │ │ └── handler.e2e-test.js │ ├── jest-e2e.config.json │ ├── jest-int.config.json │ ├── jest-unit.config.json │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ │ ├── _tests │ │ └── insert.int-test.js │ │ ├── db.js │ │ └── index.js └── docker │ ├── Dockerfile │ ├── README.md │ └── database-setup.sql ├── sls-test-pyramid ├── README.md ├── bitbucket-pipelines.yml └── code │ ├── .gitignore │ ├── README.md │ ├── _tests │ └── handler.e2e-test.js │ ├── jest-e2e.config.json │ ├── jest-int.config.json │ ├── jest-unit.config.json │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── src │ ├── _tests │ └── handler.test.js │ ├── db │ ├── _tests │ │ └── db.int-test.js │ └── index.js │ └── handler.js ├── sls-waf-apigateway ├── .gitignore ├── README.md ├── handler.js ├── package-lock.json ├── package.json ├── resources │ └── waf.yml └── serverless.yml ├── sls-webpack ├── 01_webpack │ ├── .gitignore │ ├── README.md │ ├── copy-plugin-zip.png │ ├── index.js │ ├── lib │ │ └── templates │ │ │ ├── extra.html │ │ │ └── extra2.html │ ├── package-lock.json │ ├── package.json │ ├── serverless.yml │ └── webpack.config.js ├── 02_exampletwo │ ├── core │ │ └── lib │ │ │ └── users │ │ │ └── helper.js │ ├── package-lock.json │ ├── package.json │ └── services │ │ ├── billing │ │ ├── core │ │ ├── serverless.yml │ │ └── src │ │ │ └── functions │ │ │ └── handler.js │ │ └── webpack.config.js ├── 03_refactoringToWebpack │ ├── 01_start │ │ ├── .gitignore │ │ ├── bitbucket-pipelines.yml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── serverless.yml │ │ └── src │ │ │ ├── handlers │ │ │ ├── commonfiles │ │ │ │ ├── .gitignore │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ ├── query │ │ │ │ ├── .gitignore │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ └── index.js │ │ │ ├── serviceA │ │ │ │ ├── .gitignore │ │ │ │ ├── index.js │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ ├── serviceB │ │ │ │ ├── .gitignore │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ └── index.js │ │ │ ├── serviceC │ │ │ │ ├── .gitignore │ │ │ │ ├── index.js │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ └── serviceD │ │ │ │ ├── .gitignore │ │ │ │ ├── index.js │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ └── mapping-templates │ │ │ ├── request.vtl │ │ │ └── response.vtl │ ├── 02_end │ │ ├── .gitignore │ │ ├── bitbucket-pipelines.yml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── serverless.yml │ │ ├── src │ │ │ ├── handlers │ │ │ │ ├── commonfiles │ │ │ │ │ └── index.js │ │ │ │ ├── query │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ ├── serviceA │ │ │ │ │ └── index.js │ │ │ │ ├── serviceB │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ ├── serviceC │ │ │ │ │ └── index.js │ │ │ │ └── serviceD │ │ │ │ │ └── index.js │ │ │ └── mapping-templates │ │ │ │ ├── request.vtl │ │ │ │ └── response.vtl │ │ └── webpack.config.js │ └── README.md └── README.md ├── static-website-aws-serverless-website ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── css │ │ └── styles.css │ ├── index.html │ └── js │ │ └── index.js ├── scripts │ ├── deploy.bash │ └── remove.bash └── serverless.yml ├── swim-ai-helloWorld ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.buildship.core.prefs │ └── org.eclipse.jdt.core.prefs ├── .vscode │ └── settings.json ├── README.md ├── bin │ └── main │ │ ├── api │ │ ├── DataSource.class │ │ ├── customClient.class │ │ ├── server.class │ │ └── userManager.class │ │ └── server.recon ├── build.gradle ├── client │ ├── client.js │ ├── package-lock.json │ └── package.json ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── java │ └── api │ │ ├── DataSource.java │ │ ├── customClient.java │ │ ├── server.java │ │ └── userManager.java │ └── resources │ └── server.recon └── swim-ai-sample-app ├── .classpath ├── .gradle ├── 6.4 │ ├── executionHistory │ │ ├── executionHistory.bin │ │ └── executionHistory.lock │ ├── fileChanges │ │ └── last-build.bin │ ├── fileContent │ │ └── fileContent.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ ├── gc.properties │ └── javaCompile │ │ ├── classAnalysis.bin │ │ ├── javaCompile.lock │ │ └── taskHistory.bin ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ ├── cache.properties │ └── outputFiles.bin ├── checksums │ ├── checksums.lock │ ├── md5-checksums.bin │ └── sha1-checksums.bin └── vcs-1 │ └── gc.properties ├── .project ├── .settings ├── org.eclipse.buildship.core.prefs └── org.eclipse.jdt.core.prefs ├── README.md ├── bin └── main │ ├── app │ ├── server.class │ └── twitterAgent.class │ └── server.recon ├── build.gradle ├── build ├── classes │ └── java │ │ └── main │ │ └── app │ │ ├── server.class │ │ └── twitterAgent.class ├── distributions │ ├── setupGuide.tar │ └── setupGuide.zip ├── libs │ └── gs-gradle-0.1.0.jar ├── resources │ └── main │ │ └── server.recon ├── scripts │ ├── setupGuide │ └── setupGuide.bat └── tmp │ └── jar │ └── MANIFEST.MF ├── client.html ├── getTweets.js └── src └── main ├── java └── app │ ├── server.java │ └── twitterAgent.java └── resources └── server.recon /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/.gitignore -------------------------------------------------------------------------------- /acm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/acm/README.md -------------------------------------------------------------------------------- /acm/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/acm/serverless.yml -------------------------------------------------------------------------------- /angularjs-cloudfront-aws-serverless-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angularjs-cloudfront-aws-serverless-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angularjs-cloudfront-aws-serverless-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apikeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/README.md -------------------------------------------------------------------------------- /apikeys/cloudformation/ApiKeyDemoStack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/cloudformation/ApiKeyDemoStack.yml -------------------------------------------------------------------------------- /apikeys/sls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/sls/.gitignore -------------------------------------------------------------------------------- /apikeys/sls/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/sls/handler.js -------------------------------------------------------------------------------- /apikeys/sls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/sls/package.json -------------------------------------------------------------------------------- /apikeys/sls/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/apikeys/sls/serverless.yml -------------------------------------------------------------------------------- /appsync-code-challenge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/appsync-code-challenge/readme.md -------------------------------------------------------------------------------- /appsync-subscriptions/01_withoutAuth/back/src/mapping-templates/db/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /appsync-subscriptions/01_withoutAuth/back/src/mapping-templates/lambda/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /appsync-subscriptions/01_withoutAuth/back/src/mapping-templates/none/response.vtl: -------------------------------------------------------------------------------- 1 | $utils.toJson($context.result) -------------------------------------------------------------------------------- /appsync-subscriptions/02_withAuth/back/src/mapping-templates/db/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /appsync-subscriptions/02_withAuth/back/src/mapping-templates/lambda/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /appsync-subscriptions/03_dbTrigger/back/src/mapping-templates/lambda/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /appsync-subscriptions/03_dbTrigger/back/src/mapping-templates/none/response.vtl: -------------------------------------------------------------------------------- 1 | $utils.toJson($context.result) -------------------------------------------------------------------------------- /appsync-subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/appsync-subscriptions/README.md -------------------------------------------------------------------------------- /azure-serverless-web-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.editorconfig -------------------------------------------------------------------------------- /azure-serverless-web-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.gitignore -------------------------------------------------------------------------------- /azure-serverless-web-app/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.vscode/extensions.json -------------------------------------------------------------------------------- /azure-serverless-web-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.vscode/launch.json -------------------------------------------------------------------------------- /azure-serverless-web-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.vscode/settings.json -------------------------------------------------------------------------------- /azure-serverless-web-app/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/.vscode/tasks.json -------------------------------------------------------------------------------- /azure-serverless-web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/README.md -------------------------------------------------------------------------------- /azure-serverless-web-app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/angular.json -------------------------------------------------------------------------------- /azure-serverless-web-app/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/api/.gitignore -------------------------------------------------------------------------------- /azure-serverless-web-app/api/hello-get/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/api/hello-get/index.js -------------------------------------------------------------------------------- /azure-serverless-web-app/api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/api/host.json -------------------------------------------------------------------------------- /azure-serverless-web-app/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/api/package.json -------------------------------------------------------------------------------- /azure-serverless-web-app/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/browserslist -------------------------------------------------------------------------------- /azure-serverless-web-app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /azure-serverless-web-app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/e2e/tsconfig.json -------------------------------------------------------------------------------- /azure-serverless-web-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/karma.conf.js -------------------------------------------------------------------------------- /azure-serverless-web-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/package-lock.json -------------------------------------------------------------------------------- /azure-serverless-web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/package.json -------------------------------------------------------------------------------- /azure-serverless-web-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-serverless-web-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/app/app.module.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-serverless-web-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /azure-serverless-web-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/favicon.ico -------------------------------------------------------------------------------- /azure-serverless-web-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/index.html -------------------------------------------------------------------------------- /azure-serverless-web-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/main.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/polyfills.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/styles.css -------------------------------------------------------------------------------- /azure-serverless-web-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/src/test.ts -------------------------------------------------------------------------------- /azure-serverless-web-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/tsconfig.app.json -------------------------------------------------------------------------------- /azure-serverless-web-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/tsconfig.json -------------------------------------------------------------------------------- /azure-serverless-web-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/tsconfig.spec.json -------------------------------------------------------------------------------- /azure-serverless-web-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/azure-serverless-web-app/tslint.json -------------------------------------------------------------------------------- /bash-scripts/deploy-all/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/deploy-all/.gitignore -------------------------------------------------------------------------------- /bash-scripts/deploy-all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/deploy-all/README.md -------------------------------------------------------------------------------- /bash-scripts/deploy-all/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/deploy-all/package.json -------------------------------------------------------------------------------- /bash-scripts/deploy-all/services/feed/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/deploy-all/services/feed/handler.js -------------------------------------------------------------------------------- /bash-scripts/deploy-all/services/user/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/deploy-all/services/user/handler.js -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/.gitignore -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/README.md -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/checkZipSize.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/checkZipSize.bash -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/handler.js -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/package-lock.json -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/package.json -------------------------------------------------------------------------------- /bash-scripts/less-than-5mb-zip/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bash-scripts/less-than-5mb-zip/serverless.yml -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/.gitignore -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/README.md: -------------------------------------------------------------------------------- 1 | # Bitbucket Pipeline Strategy 2 | - [Walkthrough Video](https://www.loom.com/share/df85055c943b4e9b8119b67e4cb3b4af) -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/deploy.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/deploy.bash -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/package-lock.json -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/package.json -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/serverless.yml -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serviceA/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serviceA/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/serviceA/db/index.js -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serviceA/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/serviceA/handler.js -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serviceB/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /bitbucket-pipeline-strategy/serviceB/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-pipeline-strategy/serviceB/handler.js -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/.gitignore -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/Dockerfile -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/README.md -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/index.js -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/package-lock.json -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/package.json -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/serverless.yml -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/test-service/.gitignore: -------------------------------------------------------------------------------- 1 | .serverless 2 | node_modules -------------------------------------------------------------------------------- /bitbucket-to-github-mirror/test-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/bitbucket-to-github-mirror/test-service/index.js -------------------------------------------------------------------------------- /c-sharp-layer/Functions/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/Functions/Hello.cs -------------------------------------------------------------------------------- /c-sharp-layer/Functions/Scheduled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/Functions/Scheduled.cs -------------------------------------------------------------------------------- /c-sharp-layer/Functions/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/Functions/Util.cs -------------------------------------------------------------------------------- /c-sharp-layer/aws-csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/aws-csharp.csproj -------------------------------------------------------------------------------- /c-sharp-layer/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/build.cmd -------------------------------------------------------------------------------- /c-sharp-layer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/build.sh -------------------------------------------------------------------------------- /c-sharp-layer/layer/layer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/layer/layer.dll -------------------------------------------------------------------------------- /c-sharp-layer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/package-lock.json -------------------------------------------------------------------------------- /c-sharp-layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/package.json -------------------------------------------------------------------------------- /c-sharp-layer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/readme.md -------------------------------------------------------------------------------- /c-sharp-layer/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/c-sharp-layer/serverless.yml -------------------------------------------------------------------------------- /cdk-lambda-deployment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/.gitignore -------------------------------------------------------------------------------- /cdk-lambda-deployment/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/.npmignore -------------------------------------------------------------------------------- /cdk-lambda-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/README.md -------------------------------------------------------------------------------- /cdk-lambda-deployment/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/cdk.json -------------------------------------------------------------------------------- /cdk-lambda-deployment/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testEnvironment: 'node' 3 | } 4 | -------------------------------------------------------------------------------- /cdk-lambda-deployment/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/package-lock.json -------------------------------------------------------------------------------- /cdk-lambda-deployment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/package.json -------------------------------------------------------------------------------- /cdk-lambda-deployment/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/src/index.js -------------------------------------------------------------------------------- /cdk-lambda-deployment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cdk-lambda-deployment/tsconfig.json -------------------------------------------------------------------------------- /cicd/bitbucket-pipelines/x.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicd/cicd-iam-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/cicd-iam-user/README.md -------------------------------------------------------------------------------- /cicd/cicd-iam-user/example .env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/cicd-iam-user/example .env -------------------------------------------------------------------------------- /cicd/cicd-iam-user/scripts/deploy.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/cicd-iam-user/scripts/deploy.bash -------------------------------------------------------------------------------- /cicd/cicd-iam-user/scripts/remove.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/cicd-iam-user/scripts/remove.bash -------------------------------------------------------------------------------- /cicd/cicd-iam-user/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/cicd-iam-user/serverless.yml -------------------------------------------------------------------------------- /cicd/code-build/x.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicd/github-actions-oidc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/github-actions-oidc/README.md -------------------------------------------------------------------------------- /cicd/github-actions-oidc/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/github-actions-oidc/deploy.yml -------------------------------------------------------------------------------- /cicd/github-actions-oidc/teardown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/github-actions-oidc/teardown.yml -------------------------------------------------------------------------------- /cicd/github-actions/sls-dev-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/github-actions/sls-dev-deploy.yml -------------------------------------------------------------------------------- /cicd/github-actions/sls-dev-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cicd/github-actions/sls-dev-prod.yml -------------------------------------------------------------------------------- /cloudfront-samples/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/.eslintignore -------------------------------------------------------------------------------- /cloudfront-samples/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/.eslintrc -------------------------------------------------------------------------------- /cloudfront-samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/.gitignore -------------------------------------------------------------------------------- /cloudfront-samples/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.12.1 2 | -------------------------------------------------------------------------------- /cloudfront-samples/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/.prettierignore -------------------------------------------------------------------------------- /cloudfront-samples/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/.prettierrc -------------------------------------------------------------------------------- /cloudfront-samples/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /cloudfront-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/README.md -------------------------------------------------------------------------------- /cloudfront-samples/config/stages/dev.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/config/stages/dev.sample.yml -------------------------------------------------------------------------------- /cloudfront-samples/events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/helpers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/helpers/main.js -------------------------------------------------------------------------------- /cloudfront-samples/outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/package-lock.json -------------------------------------------------------------------------------- /cloudfront-samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/package.json -------------------------------------------------------------------------------- /cloudfront-samples/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/resources/Cloudfront/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/resources/Cloudfront/app.yml -------------------------------------------------------------------------------- /cloudfront-samples/resources/S3/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/resources/S3/assets.yml -------------------------------------------------------------------------------- /cloudfront-samples/resources/S3/assetsPolicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/resources/S3/assetsPolicy.yml -------------------------------------------------------------------------------- /cloudfront-samples/resources/S3/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/resources/S3/website.yml -------------------------------------------------------------------------------- /cloudfront-samples/serverless.edge.iam.yml: -------------------------------------------------------------------------------- 1 | role: RoleDefault 2 | -------------------------------------------------------------------------------- /cloudfront-samples/serverless.edge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/serverless.edge.yml -------------------------------------------------------------------------------- /cloudfront-samples/serverless.iam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/serverless.iam.yml -------------------------------------------------------------------------------- /cloudfront-samples/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/serverless.yml -------------------------------------------------------------------------------- /cloudfront-samples/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/.eslintrc -------------------------------------------------------------------------------- /cloudfront-samples/src/@types/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/src/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/src/controllers/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/controllers/hello.ts -------------------------------------------------------------------------------- /cloudfront-samples/src/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/src/handlers/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/handlers/country.ts -------------------------------------------------------------------------------- /cloudfront-samples/src/handlers/fct.country.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/handlers/fct.country.yml -------------------------------------------------------------------------------- /cloudfront-samples/src/handlers/fct.inspect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/handlers/fct.inspect.yml -------------------------------------------------------------------------------- /cloudfront-samples/src/handlers/inspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/handlers/inspect.ts -------------------------------------------------------------------------------- /cloudfront-samples/src/lambdaEdge/getObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/lambdaEdge/getObject.ts -------------------------------------------------------------------------------- /cloudfront-samples/src/lambdaEdge/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/src/lambdaEdge/serverless.yml -------------------------------------------------------------------------------- /cloudfront-samples/src/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/src/shared/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront-samples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/cloudfront-samples/tsconfig.json -------------------------------------------------------------------------------- /code-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/code-challenge/README.md -------------------------------------------------------------------------------- /code-challenge/src/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/code-challenge/src/handlers/index.js -------------------------------------------------------------------------------- /code-challenge/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/code-challenge/template.yaml -------------------------------------------------------------------------------- /common-strategies/avoidNestedChecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/common-strategies/avoidNestedChecks.md -------------------------------------------------------------------------------- /common-strategies/httpRequestHelperFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/common-strategies/httpRequestHelperFile.md -------------------------------------------------------------------------------- /common-strategies/httpResponseHelperFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/common-strategies/httpResponseHelperFile.md -------------------------------------------------------------------------------- /common-strategies/mySQLHelperFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/common-strategies/mySQLHelperFunction.md -------------------------------------------------------------------------------- /custom-domain-apig/.gitignore: -------------------------------------------------------------------------------- 1 | .serverless 2 | node_modules/ -------------------------------------------------------------------------------- /custom-domain-apig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/README.md -------------------------------------------------------------------------------- /custom-domain-apig/base-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/base-api/index.js -------------------------------------------------------------------------------- /custom-domain-apig/base-api/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/base-api/serverless.yml -------------------------------------------------------------------------------- /custom-domain-apig/cdn/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/cdn/serverless.yml -------------------------------------------------------------------------------- /custom-domain-apig/serviceA/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/serviceA/index.js -------------------------------------------------------------------------------- /custom-domain-apig/serviceA/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-domain-apig/serviceA/serverless.yml -------------------------------------------------------------------------------- /custom-lambda-authorizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/README.md -------------------------------------------------------------------------------- /custom-lambda-authorizer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/package-lock.json -------------------------------------------------------------------------------- /custom-lambda-authorizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/package.json -------------------------------------------------------------------------------- /custom-lambda-authorizer/params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/params.yml -------------------------------------------------------------------------------- /custom-lambda-authorizer/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/serverless.yml -------------------------------------------------------------------------------- /custom-lambda-authorizer/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/custom-lambda-authorizer/test.js -------------------------------------------------------------------------------- /datapipeline/dynamodb-to-s3/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/dynamodb-to-s3/serverless.yml -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/README.md -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/glue/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/glue/serverless.yml -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/package-lock.json -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/package.json -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/rds/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/rds/serverless.yml -------------------------------------------------------------------------------- /datapipeline/sls-glue-s3-rds/s3/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/datapipeline/sls-glue-s3-rds/s3/serverless.yml -------------------------------------------------------------------------------- /elk-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/README.md -------------------------------------------------------------------------------- /elk-extension/extensions-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/extensions-api.yaml -------------------------------------------------------------------------------- /elk-extension/layers/elk/elk-extension/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/layers/elk/elk-extension/index.js -------------------------------------------------------------------------------- /elk-extension/layers/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/layers/serverless.yml -------------------------------------------------------------------------------- /elk-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/package.json -------------------------------------------------------------------------------- /elk-extension/scripts/invoke.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/scripts/invoke.bash -------------------------------------------------------------------------------- /elk-extension/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/serverless.yml -------------------------------------------------------------------------------- /elk-extension/src/handlers/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/elk-extension/src/handlers/example.js -------------------------------------------------------------------------------- /errorhandling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/errorhandling/README.md -------------------------------------------------------------------------------- /full-stack-app-components/express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/full-stack-app-components/express/README.md -------------------------------------------------------------------------------- /full-stack-app-components/express/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/full-stack-app-components/express/serverless.yml -------------------------------------------------------------------------------- /full-stack-app-components/slspro/serverless.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full-stack-app-components/website/serverless.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-programming/gettingValues/06_ramda/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /functional-programming/gettingValues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/functional-programming/gettingValues/README.md -------------------------------------------------------------------------------- /generic-cloudfront-aws-serverless-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/generic-cloudfront-aws-serverless-app/README.md -------------------------------------------------------------------------------- /graphql-mock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/.gitignore -------------------------------------------------------------------------------- /graphql-mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/README.md -------------------------------------------------------------------------------- /graphql-mock/graphql-mock-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/graphql-mock-architecture.png -------------------------------------------------------------------------------- /graphql-mock/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/package-lock.json -------------------------------------------------------------------------------- /graphql-mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/package.json -------------------------------------------------------------------------------- /graphql-mock/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/serverless.yml -------------------------------------------------------------------------------- /graphql-mock/src/functions/graphql/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/functions/graphql/handler.js -------------------------------------------------------------------------------- /graphql-mock/src/functions/service-a/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/functions/service-a/handler.js -------------------------------------------------------------------------------- /graphql-mock/src/functions/utils/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/functions/utils/mocks.js -------------------------------------------------------------------------------- /graphql-mock/src/graphql/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/graphql/mocks.js -------------------------------------------------------------------------------- /graphql-mock/src/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/graphql/schema.graphql -------------------------------------------------------------------------------- /graphql-mock/src/graphql/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/graphql-mock/src/graphql/server.js -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/Readme.md -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/hosting/.eslintrc -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/hosting/.gitignore -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/hosting/.npmignore -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/.nvmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/.nvmrc copy: -------------------------------------------------------------------------------- 1 | 16.14.0 -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/hosting/src/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/data/menu/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/mainRepo/go.mod -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/layouts/shortcodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/themes/hugo-geekdoc/VERSION: -------------------------------------------------------------------------------- 1 | v0.35.7 2 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/themes/hugo-geekdoc/layouts/partials/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/mainRepo/themes/hugo-geekdoc/static/custom.css: -------------------------------------------------------------------------------- 1 | /* You can add custom styles here. */ 2 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoA/documentation/schema/schema.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoA/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/OrgName/repoA 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoA/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/repoA/src/index.ts -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoB/documentation/schema/schema.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoB/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/OrgName/repoB 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /hugo-multi-repo-documentation/repoB/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/hugo-multi-repo-documentation/repoB/src/index.ts -------------------------------------------------------------------------------- /kafka-msk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/.gitignore -------------------------------------------------------------------------------- /kafka-msk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/README.md -------------------------------------------------------------------------------- /kafka-msk/resources/client-machine/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/client-machine/startup.sh -------------------------------------------------------------------------------- /kafka-msk/resources/lambda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/lambda/package-lock.json -------------------------------------------------------------------------------- /kafka-msk/resources/lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/lambda/package.json -------------------------------------------------------------------------------- /kafka-msk/resources/lambda/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/lambda/serverless.yml -------------------------------------------------------------------------------- /kafka-msk/resources/msk/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/msk/serverless.yml -------------------------------------------------------------------------------- /kafka-msk/resources/ssm-parameter/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/ssm-parameter/serverless.yml -------------------------------------------------------------------------------- /kafka-msk/resources/vpc/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/kafka-msk/resources/vpc/serverless.yml -------------------------------------------------------------------------------- /newman-codebuild/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | nohup.* -------------------------------------------------------------------------------- /newman-codebuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/README.md -------------------------------------------------------------------------------- /newman-codebuild/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/buildspec.yml -------------------------------------------------------------------------------- /newman-codebuild/docs/gotchas.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newman-codebuild/docs/newman-export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/docs/newman-export.gif -------------------------------------------------------------------------------- /newman-codebuild/docs/test-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/docs/test-console.png -------------------------------------------------------------------------------- /newman-codebuild/docs/test-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/docs/test-sample.png -------------------------------------------------------------------------------- /newman-codebuild/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/package-lock.json -------------------------------------------------------------------------------- /newman-codebuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/package.json -------------------------------------------------------------------------------- /newman-codebuild/scripts/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/scripts/test.bash -------------------------------------------------------------------------------- /newman-codebuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/serverless.yml -------------------------------------------------------------------------------- /newman-codebuild/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/newman-codebuild/src/index.js -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/README.md -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/aa_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/aa_01.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/aa_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/aa_02.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/aa_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/aa_03.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_01.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_02.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_03.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_e_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_e_01.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_e_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_e_02.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/assets/cb_e_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/assets/cb_e_03.png -------------------------------------------------------------------------------- /nodejs-callbacksToAsyncAwait/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-callbacksToAsyncAwait/code/package.json -------------------------------------------------------------------------------- /nodejs-linting/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/.eslintrc.js -------------------------------------------------------------------------------- /nodejs-linting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/README.md -------------------------------------------------------------------------------- /nodejs-linting/assets/function-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/assets/function-size.png -------------------------------------------------------------------------------- /nodejs-linting/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/package-lock.json -------------------------------------------------------------------------------- /nodejs-linting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/package.json -------------------------------------------------------------------------------- /nodejs-linting/src/01_noVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/src/01_noVars.js -------------------------------------------------------------------------------- /nodejs-linting/src/02_noConsoleLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/src/02_noConsoleLog.js -------------------------------------------------------------------------------- /nodejs-linting/src/03_maxCallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/src/03_maxCallbacks.js -------------------------------------------------------------------------------- /nodejs-linting/src/04_maxDepth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/src/04_maxDepth.js -------------------------------------------------------------------------------- /nodejs-linting/src/05_maxLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/nodejs-linting/src/05_maxLines.js -------------------------------------------------------------------------------- /private-npm-packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/private-npm-packages/README.md -------------------------------------------------------------------------------- /private-npm-packages/examples/privateNpmPackage/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /private-npm-packages/examples/privateNpmPackage/.npmignore: -------------------------------------------------------------------------------- 1 | tests 2 | bitbucket-pipelines.yml -------------------------------------------------------------------------------- /private-npm-packages/examples/serviceThatUsesPrivateNpmPackage/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /private-npm-packages/examples/serviceThatUsesPrivateNpmPackage/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /private-repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/private-repositories/README.md -------------------------------------------------------------------------------- /private-repositories/bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/private-repositories/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /private-repositories/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/private-repositories/package.json -------------------------------------------------------------------------------- /reactjs-cloudfront-aws-serverless-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reactjs-cloudfront-aws-serverless-app/.gitignore -------------------------------------------------------------------------------- /reactjs-cloudfront-aws-serverless-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reactjs-cloudfront-aws-serverless-app/README.md -------------------------------------------------------------------------------- /reactjs-cloudfront-aws-serverless-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reactjs-cloudfront-aws-serverless-app/yarn.lock -------------------------------------------------------------------------------- /reuse-existing-api-gateway-stage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reuse-existing-api-gateway-stage/.gitignore -------------------------------------------------------------------------------- /reuse-existing-api-gateway-stage/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reuse-existing-api-gateway-stage/handler.js -------------------------------------------------------------------------------- /reuse-existing-api-gateway-stage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/reuse-existing-api-gateway-stage/readme.md -------------------------------------------------------------------------------- /s3-remover/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-remover/.gitignore -------------------------------------------------------------------------------- /s3-remover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-remover/README.md -------------------------------------------------------------------------------- /s3-remover/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-remover/package-lock.json -------------------------------------------------------------------------------- /s3-remover/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-remover/package.json -------------------------------------------------------------------------------- /s3-remover/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-remover/serverless.yml -------------------------------------------------------------------------------- /s3-shared-bucket-artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/s3-shared-bucket-artifacts/README.md -------------------------------------------------------------------------------- /sam-cloudwatch-dashboard-use-and-red-monitoring/api/.npmignore: -------------------------------------------------------------------------------- 1 | tests/* 2 | -------------------------------------------------------------------------------- /sam-gradual-deployments-nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sam-gradual-deployments-nodejs/.gitignore -------------------------------------------------------------------------------- /sam-gradual-deployments-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sam-gradual-deployments-nodejs/README.md -------------------------------------------------------------------------------- /sam-gradual-deployments-nodejs/hello-world/.npmignore: -------------------------------------------------------------------------------- 1 | tests/* 2 | -------------------------------------------------------------------------------- /sam-gradual-deployments-nodejs/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sam-gradual-deployments-nodejs/samconfig.toml -------------------------------------------------------------------------------- /sam-gradual-deployments-nodejs/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sam-gradual-deployments-nodejs/template.yaml -------------------------------------------------------------------------------- /serverless-framework-appsync-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/serverless-framework-appsync-example/README.md -------------------------------------------------------------------------------- /serverless-framework-appsync-example/src/mapping-templates/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) 2 | -------------------------------------------------------------------------------- /ses-email-templates/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/package-lock.json -------------------------------------------------------------------------------- /ses-email-templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/package.json -------------------------------------------------------------------------------- /ses-email-templates/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/serverless.yml -------------------------------------------------------------------------------- /ses-email-templates/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/src/index.js -------------------------------------------------------------------------------- /ses-email-templates/src/templates/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/src/templates/example.yml -------------------------------------------------------------------------------- /ses-email-templates/src/tests/exampleTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/ses-email-templates/src/tests/exampleTest.js -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/.gitignore -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/README.md -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/main.tf -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/outputs.tf -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/sg-demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/sg-demo/demo.js -------------------------------------------------------------------------------- /sg-terraform-lambda-deploy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sg-terraform-lambda-deploy/variables.tf -------------------------------------------------------------------------------- /sila-nodejs-aws-serverless-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sila-nodejs-aws-serverless-backend/.gitignore -------------------------------------------------------------------------------- /sila-nodejs-aws-serverless-backend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sila-nodejs-aws-serverless-backend/main.js -------------------------------------------------------------------------------- /slack-lambda-notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/slack-lambda-notifications/README.md -------------------------------------------------------------------------------- /slack-lambda-notifications/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/slack-lambda-notifications/functions/index.js -------------------------------------------------------------------------------- /slack-lambda-notifications/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/slack-lambda-notifications/package-lock.json -------------------------------------------------------------------------------- /slack-lambda-notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/slack-lambda-notifications/package.json -------------------------------------------------------------------------------- /slack-lambda-notifications/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/slack-lambda-notifications/serverless.yml -------------------------------------------------------------------------------- /sls-alb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-alb/.gitignore -------------------------------------------------------------------------------- /sls-alb/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-alb/handler.js -------------------------------------------------------------------------------- /sls-alb/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-alb/serverless.yml -------------------------------------------------------------------------------- /sls-antipatterns/01_lambdaCallLambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-antipatterns/01_lambdaCallLambda/README.md -------------------------------------------------------------------------------- /sls-antipatterns/01_lambdaCallLambda/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-antipatterns/01_lambdaCallLambda/io.js -------------------------------------------------------------------------------- /sls-antipatterns/02_sharedDatabases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-antipatterns/02_sharedDatabases/README.md -------------------------------------------------------------------------------- /sls-antipatterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-antipatterns/README.md -------------------------------------------------------------------------------- /sls-arch/01_withRequire/01_handler/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-arch/01_withRequire/01_handler/handler.js -------------------------------------------------------------------------------- /sls-arch/02_withDependencyInjection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-arch/02_withDependencyInjection/.gitignore -------------------------------------------------------------------------------- /sls-arch/02_withDependencyInjection/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-arch/02_withDependencyInjection/handler.js -------------------------------------------------------------------------------- /sls-arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-arch/README.md -------------------------------------------------------------------------------- /sls-awsglue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/.gitignore -------------------------------------------------------------------------------- /sls-awsglue/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/handler.js -------------------------------------------------------------------------------- /sls-awsglue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/package-lock.json -------------------------------------------------------------------------------- /sls-awsglue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/package.json -------------------------------------------------------------------------------- /sls-awsglue/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/serverless.yml -------------------------------------------------------------------------------- /sls-awsglue/src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/src/db.js -------------------------------------------------------------------------------- /sls-awsglue/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-awsglue/src/index.js -------------------------------------------------------------------------------- /sls-bastion/.gitignore: -------------------------------------------------------------------------------- 1 | ec2instconnect.* -------------------------------------------------------------------------------- /sls-bastion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-bastion/README.md -------------------------------------------------------------------------------- /sls-bastion/connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-bastion/connect.sh -------------------------------------------------------------------------------- /sls-bastion/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-bastion/serverless.yml -------------------------------------------------------------------------------- /sls-circuitbreaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/.gitignore -------------------------------------------------------------------------------- /sls-circuitbreaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/README.md -------------------------------------------------------------------------------- /sls-circuitbreaker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/package-lock.json -------------------------------------------------------------------------------- /sls-circuitbreaker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/package.json -------------------------------------------------------------------------------- /sls-circuitbreaker/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/serverless.yml -------------------------------------------------------------------------------- /sls-circuitbreaker/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/src/handler.js -------------------------------------------------------------------------------- /sls-circuitbreaker/src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/src/utils/http.js -------------------------------------------------------------------------------- /sls-circuitbreaker/src/utils/retry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-circuitbreaker/src/utils/retry.js -------------------------------------------------------------------------------- /sls-cloudtrail-pci-compliance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cloudtrail-pci-compliance/.gitignore -------------------------------------------------------------------------------- /sls-cloudtrail-pci-compliance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cloudtrail-pci-compliance/README.md -------------------------------------------------------------------------------- /sls-cloudtrail-pci-compliance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cloudtrail-pci-compliance/package.json -------------------------------------------------------------------------------- /sls-cloudtrail-pci-compliance/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cloudtrail-pci-compliance/serverless.yml -------------------------------------------------------------------------------- /sls-codebuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/README.md -------------------------------------------------------------------------------- /sls-codebuild/__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/__tests__/index.spec.js -------------------------------------------------------------------------------- /sls-codebuild/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/buildspec.yml -------------------------------------------------------------------------------- /sls-codebuild/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/index.js -------------------------------------------------------------------------------- /sls-codebuild/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/package-lock.json -------------------------------------------------------------------------------- /sls-codebuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/package.json -------------------------------------------------------------------------------- /sls-codebuild/resources/codepipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/resources/codepipeline/README.md -------------------------------------------------------------------------------- /sls-codebuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-codebuild/serverless.yml -------------------------------------------------------------------------------- /sls-cognito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/README.md -------------------------------------------------------------------------------- /sls-cognito/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/api/.gitignore -------------------------------------------------------------------------------- /sls-cognito/api/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/api/handler.js -------------------------------------------------------------------------------- /sls-cognito/api/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/api/serverless.yml -------------------------------------------------------------------------------- /sls-cognito/service1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service1/.gitignore -------------------------------------------------------------------------------- /sls-cognito/service1/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service1/handler.js -------------------------------------------------------------------------------- /sls-cognito/service1/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service1/serverless.yml -------------------------------------------------------------------------------- /sls-cognito/service2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service2/.gitignore -------------------------------------------------------------------------------- /sls-cognito/service2/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service2/handler.js -------------------------------------------------------------------------------- /sls-cognito/service2/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-cognito/service2/serverless.yml -------------------------------------------------------------------------------- /sls-component-starter/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /sls-component-starter/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/.eslintrc.js -------------------------------------------------------------------------------- /sls-component-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/.gitignore -------------------------------------------------------------------------------- /sls-component-starter/.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /sls-component-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/README.md -------------------------------------------------------------------------------- /sls-component-starter/examples/example .env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/examples/example .env -------------------------------------------------------------------------------- /sls-component-starter/examples/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/examples/serverless.yml -------------------------------------------------------------------------------- /sls-component-starter/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/prettier.config.js -------------------------------------------------------------------------------- /sls-component-starter/serverless.component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/serverless.component.yml -------------------------------------------------------------------------------- /sls-component-starter/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/src/package.json -------------------------------------------------------------------------------- /sls-component-starter/src/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/src/serverless.js -------------------------------------------------------------------------------- /sls-component-starter/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/src/utils.js -------------------------------------------------------------------------------- /sls-component-starter/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-component-starter/tutorial.md -------------------------------------------------------------------------------- /sls-components-appsync-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-components-appsync-example/.gitignore -------------------------------------------------------------------------------- /sls-components-appsync-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-components-appsync-example/README.md -------------------------------------------------------------------------------- /sls-components-appsync-example/components/appsync/src/vtl/response.vtl: -------------------------------------------------------------------------------- 1 | $utils.toJson($context.result) 2 | -------------------------------------------------------------------------------- /sls-components-appsync-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-components-appsync-example/package.json -------------------------------------------------------------------------------- /sls-decoupling-apigateway-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-decoupling-apigateway-lambda/README.md -------------------------------------------------------------------------------- /sls-dynamic-config/01_dynamic-value/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamic-config/01_dynamic-value/.gitignore -------------------------------------------------------------------------------- /sls-dynamic-config/01_dynamic-value/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamic-config/01_dynamic-value/handler.js -------------------------------------------------------------------------------- /sls-dynamic-config/03_dynamic-file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamic-config/03_dynamic-file/.gitignore -------------------------------------------------------------------------------- /sls-dynamic-config/03_dynamic-file/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamic-config/03_dynamic-file/handler.js -------------------------------------------------------------------------------- /sls-dynamic-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamic-config/README.md -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/.editorconfig -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'standard' 3 | } 4 | -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/.gitignore -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/README.md -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/lib/aws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/lib/aws.js -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/lib/config.js -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/package-lock.json -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/package.json -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/serverless.yml -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/services/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/services/region.js -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/services/region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/services/region.yml -------------------------------------------------------------------------------- /sls-dynamodb-global-tables/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-global-tables/webpack.config.js -------------------------------------------------------------------------------- /sls-dynamodb-integration-testing/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .serverless -------------------------------------------------------------------------------- /sls-dynamodb-integration-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-integration-testing/README.md -------------------------------------------------------------------------------- /sls-dynamodb-integration-testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynamodb-integration-testing/package.json -------------------------------------------------------------------------------- /sls-dynatrace/01_subfolders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynatrace/01_subfolders/.gitignore -------------------------------------------------------------------------------- /sls-dynatrace/01_subfolders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynatrace/01_subfolders/package-lock.json -------------------------------------------------------------------------------- /sls-dynatrace/01_subfolders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynatrace/01_subfolders/package.json -------------------------------------------------------------------------------- /sls-dynatrace/01_subfolders/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynatrace/01_subfolders/serverless.yml -------------------------------------------------------------------------------- /sls-dynatrace/02_subfoldersAndLayers/src/handlers/serviceA/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-dynatrace/03_dynatraceLayersServerlessDashboard/service/src/handlers/serviceA/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-dynatrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-dynatrace/README.md -------------------------------------------------------------------------------- /sls-e2e-fullstack/.github/workflows/front.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/.github/workflows/front.yml -------------------------------------------------------------------------------- /sls-e2e-fullstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/README.md -------------------------------------------------------------------------------- /sls-e2e-fullstack/back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/back/.gitignore -------------------------------------------------------------------------------- /sls-e2e-fullstack/back/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/back/handler.js -------------------------------------------------------------------------------- /sls-e2e-fullstack/back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/back/package-lock.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/back/package.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/back/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/back/serverless.yml -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/.gitignore -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/README.md -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/_tests/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/_tests/main.test.js -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/config.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/jest-e2e.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/jest-e2e.config.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/jest-unit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/jest-unit.config.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/package.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/favicon.ico -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/index.html -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/logo192.png -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/logo512.png -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/manifest.json -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/public/robots.txt -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/App.css -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/App.js -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/index.css -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/index.js -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/logo.svg -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/serviceWorker.js -------------------------------------------------------------------------------- /sls-e2e-fullstack/front/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-e2e-fullstack/front/src/setupTests.js -------------------------------------------------------------------------------- /sls-ec2-nginx-nlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-ec2-nginx-nlb/README.md -------------------------------------------------------------------------------- /sls-ec2-nginx-nlb/ec2/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-ec2-nginx-nlb/ec2/serverless.yml -------------------------------------------------------------------------------- /sls-ec2-nginx-nlb/nlb/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-ec2-nginx-nlb/nlb/serverless.yml -------------------------------------------------------------------------------- /sls-esbuild/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/.github/workflows/main.yml -------------------------------------------------------------------------------- /sls-esbuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/.gitignore -------------------------------------------------------------------------------- /sls-esbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/README.md -------------------------------------------------------------------------------- /sls-esbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/package.json -------------------------------------------------------------------------------- /sls-esbuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/serverless.yml -------------------------------------------------------------------------------- /sls-esbuild/src/handlers/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-esbuild/src/handlers/hello/index.js -------------------------------------------------------------------------------- /sls-eventbridge/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-eventbridge/.npmignore -------------------------------------------------------------------------------- /sls-eventbridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-eventbridge/README.md -------------------------------------------------------------------------------- /sls-eventbridge/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-eventbridge/handler.js -------------------------------------------------------------------------------- /sls-eventbridge/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-eventbridge/serverless.yml -------------------------------------------------------------------------------- /sls-fargate-eks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/.gitignore -------------------------------------------------------------------------------- /sls-fargate-eks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/README.md -------------------------------------------------------------------------------- /sls-fargate-eks/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/Dockerfile -------------------------------------------------------------------------------- /sls-fargate-eks/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/README.md -------------------------------------------------------------------------------- /sls-fargate-eks/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/index.js -------------------------------------------------------------------------------- /sls-fargate-eks/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/package.json -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/cluster.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/config-map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/config-map.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/deployment.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/ingress.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/namespace.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/rbac-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/rbac-role.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/resources/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/resources/service.yml -------------------------------------------------------------------------------- /sls-fargate-eks/app/scripts/build-files.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/scripts/build-files.bash -------------------------------------------------------------------------------- /sls-fargate-eks/app/scripts/deploy-ecr.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/scripts/deploy-ecr.bash -------------------------------------------------------------------------------- /sls-fargate-eks/app/scripts/deploy.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/app/scripts/deploy.bash -------------------------------------------------------------------------------- /sls-fargate-eks/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/infrastructure/README.md -------------------------------------------------------------------------------- /sls-fargate-eks/infrastructure/ecr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/infrastructure/ecr/README.md -------------------------------------------------------------------------------- /sls-fargate-eks/infrastructure/eks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fargate-eks/infrastructure/eks/README.md -------------------------------------------------------------------------------- /sls-feature-toggling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/.gitignore -------------------------------------------------------------------------------- /sls-feature-toggling/README.md: -------------------------------------------------------------------------------- 1 | # Simple Feature Toggling 2 | 3 | ![steps](./assets/ftSteps.png) -------------------------------------------------------------------------------- /sls-feature-toggling/assets/design.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/assets/design.sketch -------------------------------------------------------------------------------- /sls-feature-toggling/assets/ftSteps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/assets/ftSteps.png -------------------------------------------------------------------------------- /sls-feature-toggling/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/handler.js -------------------------------------------------------------------------------- /sls-feature-toggling/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/package-lock.json -------------------------------------------------------------------------------- /sls-feature-toggling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/package.json -------------------------------------------------------------------------------- /sls-feature-toggling/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-feature-toggling/serverless.yml -------------------------------------------------------------------------------- /sls-fileupload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/README.md -------------------------------------------------------------------------------- /sls-fileupload/_exampleFiles/largePicture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/_exampleFiles/largePicture.jpg -------------------------------------------------------------------------------- /sls-fileupload/_exampleFiles/picturePdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/_exampleFiles/picturePdf.pdf -------------------------------------------------------------------------------- /sls-fileupload/_exampleFiles/textfile.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/_exampleFiles/textfile.rtf -------------------------------------------------------------------------------- /sls-fileupload/_exampleFiles/wordDoc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/_exampleFiles/wordDoc.docx -------------------------------------------------------------------------------- /sls-fileupload/back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/back/.gitignore -------------------------------------------------------------------------------- /sls-fileupload/back/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/back/handler.js -------------------------------------------------------------------------------- /sls-fileupload/back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/back/package-lock.json -------------------------------------------------------------------------------- /sls-fileupload/back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/back/package.json -------------------------------------------------------------------------------- /sls-fileupload/back/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/back/serverless.yml -------------------------------------------------------------------------------- /sls-fileupload/front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/.gitignore -------------------------------------------------------------------------------- /sls-fileupload/front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/README.md -------------------------------------------------------------------------------- /sls-fileupload/front/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/babel.config.js -------------------------------------------------------------------------------- /sls-fileupload/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/package.json -------------------------------------------------------------------------------- /sls-fileupload/front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/public/favicon.ico -------------------------------------------------------------------------------- /sls-fileupload/front/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/public/index.html -------------------------------------------------------------------------------- /sls-fileupload/front/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/src/App.vue -------------------------------------------------------------------------------- /sls-fileupload/front/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/src/assets/logo.png -------------------------------------------------------------------------------- /sls-fileupload/front/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/src/main.js -------------------------------------------------------------------------------- /sls-fileupload/front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-fileupload/front/yarn.lock -------------------------------------------------------------------------------- /sls-finch-dynamic-build/README.md: -------------------------------------------------------------------------------- 1 | # Serverless Finch Dynamic Build 2 | - [Video Walkthrough](https://www.loom.com/share/c90b276c0c764e0582903ef870687251) -------------------------------------------------------------------------------- /sls-finch-dynamic-build/back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/back/.gitignore -------------------------------------------------------------------------------- /sls-finch-dynamic-build/back/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/back/handler.js -------------------------------------------------------------------------------- /sls-finch-dynamic-build/back/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/back/serverless.yml -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/front/package.json -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/front/serverless.yml -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/front/src/index.html -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/front/src/index.js -------------------------------------------------------------------------------- /sls-finch-dynamic-build/front/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-finch-dynamic-build/front/src/style.css -------------------------------------------------------------------------------- /sls-frontend-with-cicd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/.gitignore -------------------------------------------------------------------------------- /sls-frontend-with-cicd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/README.md -------------------------------------------------------------------------------- /sls-frontend-with-cicd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/deploy.sh -------------------------------------------------------------------------------- /sls-frontend-with-cicd/functions/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/functions/handler.js -------------------------------------------------------------------------------- /sls-frontend-with-cicd/resources/buckets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/resources/buckets.yml -------------------------------------------------------------------------------- /sls-frontend-with-cicd/resources/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/resources/build.yml -------------------------------------------------------------------------------- /sls-frontend-with-cicd/resources/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/resources/events.yml -------------------------------------------------------------------------------- /sls-frontend-with-cicd/resources/iam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/resources/iam.yml -------------------------------------------------------------------------------- /sls-frontend-with-cicd/resources/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/resources/pipeline.yml -------------------------------------------------------------------------------- /sls-frontend-with-cicd/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-frontend-with-cicd/serverless.yml -------------------------------------------------------------------------------- /sls-general/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.test.js -------------------------------------------------------------------------------- /sls-general/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/.eslintrc.js -------------------------------------------------------------------------------- /sls-general/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/.gitignore -------------------------------------------------------------------------------- /sls-general/CODEREVIEW_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/CODEREVIEW_CHECKLIST.md -------------------------------------------------------------------------------- /sls-general/CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/CODING_STANDARDS.md -------------------------------------------------------------------------------- /sls-general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/README.md -------------------------------------------------------------------------------- /sls-general/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/package-lock.json -------------------------------------------------------------------------------- /sls-general/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/package.json -------------------------------------------------------------------------------- /sls-general/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/serverless.yml -------------------------------------------------------------------------------- /sls-general/src/_tests/handlerLogic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/src/_tests/handlerLogic.test.js -------------------------------------------------------------------------------- /sls-general/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/src/handler.js -------------------------------------------------------------------------------- /sls-general/src/helpers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/src/helpers/errors.js -------------------------------------------------------------------------------- /sls-general/src/helpers/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/src/helpers/http.js -------------------------------------------------------------------------------- /sls-general/src/io/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-general/src/io/index.js -------------------------------------------------------------------------------- /sls-gradual-deployments-csharp/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-gradual-deployments-csharp/.npmignore -------------------------------------------------------------------------------- /sls-gradual-deployments-csharp/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-gradual-deployments-csharp/build.cmd -------------------------------------------------------------------------------- /sls-gradual-deployments-csharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-gradual-deployments-csharp/build.sh -------------------------------------------------------------------------------- /sls-gradual-deployments-csharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-gradual-deployments-csharp/package.json -------------------------------------------------------------------------------- /sls-gradual-deployments-csharp/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-gradual-deployments-csharp/serverless.yml -------------------------------------------------------------------------------- /sls-guardduty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-guardduty/.gitignore -------------------------------------------------------------------------------- /sls-guardduty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-guardduty/README.md -------------------------------------------------------------------------------- /sls-guardduty/resources/guardduty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-guardduty/resources/guardduty/package.json -------------------------------------------------------------------------------- /sls-iam-role/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-iam-role/serverless.yml -------------------------------------------------------------------------------- /sls-image-endpoint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-endpoint/.gitignore -------------------------------------------------------------------------------- /sls-image-endpoint/assets/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-endpoint/assets/sky.png -------------------------------------------------------------------------------- /sls-image-endpoint/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-endpoint/handler.js -------------------------------------------------------------------------------- /sls-image-endpoint/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-endpoint/serverless.yml -------------------------------------------------------------------------------- /sls-image-resize/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/.editorconfig -------------------------------------------------------------------------------- /sls-image-resize/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /sls-image-resize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/.gitignore -------------------------------------------------------------------------------- /sls-image-resize/.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /sls-image-resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/README.md -------------------------------------------------------------------------------- /sls-image-resize/config/iamRoleStatements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/config/iamRoleStatements.yml -------------------------------------------------------------------------------- /sls-image-resize/events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-image-resize/lib/aws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/lib/aws.js -------------------------------------------------------------------------------- /sls-image-resize/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/lib/config.js -------------------------------------------------------------------------------- /sls-image-resize/outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-image-resize/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/package-lock.json -------------------------------------------------------------------------------- /sls-image-resize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/package.json -------------------------------------------------------------------------------- /sls-image-resize/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-image-resize/resources/S3Bucket/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/resources/S3Bucket/cache.yml -------------------------------------------------------------------------------- /sls-image-resize/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/serverless.yml -------------------------------------------------------------------------------- /sls-image-resize/services/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/services/generate.js -------------------------------------------------------------------------------- /sls-image-resize/services/generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/services/generate.yml -------------------------------------------------------------------------------- /sls-image-resize/stages/dev.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/stages/dev.sample.yml -------------------------------------------------------------------------------- /sls-image-resize/stages/production.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/stages/production.sample.yml -------------------------------------------------------------------------------- /sls-image-resize/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-image-resize/webpack.config.js -------------------------------------------------------------------------------- /sls-img-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/README.md -------------------------------------------------------------------------------- /sls-img-processing/serviceA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/serviceA/.gitignore -------------------------------------------------------------------------------- /sls-img-processing/serviceA/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/serviceA/handler.js -------------------------------------------------------------------------------- /sls-img-processing/serviceA/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/serviceA/package-lock.json -------------------------------------------------------------------------------- /sls-img-processing/serviceA/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/serviceA/package.json -------------------------------------------------------------------------------- /sls-img-processing/serviceA/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-img-processing/serviceA/serverless.yml -------------------------------------------------------------------------------- /sls-jest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/.gitignore -------------------------------------------------------------------------------- /sls-jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/README.md -------------------------------------------------------------------------------- /sls-jest/defining-a-testing-strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/defining-a-testing-strategy/README.md -------------------------------------------------------------------------------- /sls-jest/defining-a-testing-strategy/code/.gitignore: -------------------------------------------------------------------------------- 1 | .serverless 2 | node_modules -------------------------------------------------------------------------------- /sls-jest/e2e-apigateway-apikey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-apigateway-apikey/README.md -------------------------------------------------------------------------------- /sls-jest/e2e-apigateway-apikey/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-apigateway-apikey/code/.gitignore -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/README.md -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/code/.gitignore -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/code/package.json -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/code/serverless.yml -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/code/src/handler.js -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/src/mapping-templates/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) 2 | -------------------------------------------------------------------------------- /sls-jest/e2e-appsync-iam/code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/e2e-appsync-iam/code/yarn.lock -------------------------------------------------------------------------------- /sls-jest/env-vars/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/.gitignore -------------------------------------------------------------------------------- /sls-jest/env-vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/README.md -------------------------------------------------------------------------------- /sls-jest/env-vars/jest/setEnvVars.js: -------------------------------------------------------------------------------- 1 | require("dotenv").config() -------------------------------------------------------------------------------- /sls-jest/env-vars/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/package-lock.json -------------------------------------------------------------------------------- /sls-jest/env-vars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/package.json -------------------------------------------------------------------------------- /sls-jest/env-vars/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/serverless.yml -------------------------------------------------------------------------------- /sls-jest/env-vars/src/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/env-vars/src/handlers/index.js -------------------------------------------------------------------------------- /sls-jest/jest-mocking/01_jestFn/01_moduleExport/src/codeToMock.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | return 2 3 | } 4 | -------------------------------------------------------------------------------- /sls-jest/jest-mocking/01_jestFn/02_moduleFunction/src/codeToMock.js: -------------------------------------------------------------------------------- 1 | exports.method = () => { 2 | return 2 3 | } -------------------------------------------------------------------------------- /sls-jest/jest-mocking/02_mockFolder/01_moduleExport/src/__mocks__/codeToMock.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | return 'MOCK' 3 | } -------------------------------------------------------------------------------- /sls-jest/jest-mocking/02_mockFolder/01_moduleExport/src/codeToMock.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | return 2 3 | } 4 | -------------------------------------------------------------------------------- /sls-jest/jest-mocking/02_mockFolder/02_moduleFunction/src/__mocks__/codeToMock.js: -------------------------------------------------------------------------------- 1 | exports.method = () => { 2 | return 'MOCK' 3 | } -------------------------------------------------------------------------------- /sls-jest/jest-mocking/02_mockFolder/02_moduleFunction/src/codeToMock.js: -------------------------------------------------------------------------------- 1 | exports.method = () => { 2 | return 2 3 | } -------------------------------------------------------------------------------- /sls-jest/jest-mocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/jest-mocking/README.md -------------------------------------------------------------------------------- /sls-jest/jest-mocking/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/jest-mocking/package-lock.json -------------------------------------------------------------------------------- /sls-jest/jest-mocking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/jest-mocking/package.json -------------------------------------------------------------------------------- /sls-jest/mocking-aws-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/mocking-aws-sdk/README.md -------------------------------------------------------------------------------- /sls-jest/mocking-aws-sdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/mocking-aws-sdk/package-lock.json -------------------------------------------------------------------------------- /sls-jest/mocking-aws-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/mocking-aws-sdk/package.json -------------------------------------------------------------------------------- /sls-jest/mocking-aws-sdk/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/mocking-aws-sdk/serverless.yml -------------------------------------------------------------------------------- /sls-jest/mocking-aws-sdk/src/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/mocking-aws-sdk/src/handlers/index.js -------------------------------------------------------------------------------- /sls-jest/testing-walkthrough/01-how-to-use-jest/intro-to-jest/end/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-jest/testing-walkthrough/01-how-to-use-jest/intro-to-jest/start/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-jest/testing-walkthrough/03-how-to-test-external-services/02_testingExternalResourcesExample/code/resources/db/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /sls-jest/testing-walkthrough/03-how-to-test-external-services/02_testingExternalResourcesExample/code/services/addProduct/src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-jest/testing-walkthrough/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-jest/testing-walkthrough/README.md -------------------------------------------------------------------------------- /sls-knownIssues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-knownIssues/README.md -------------------------------------------------------------------------------- /sls-lambda-component/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-component/.gitignore -------------------------------------------------------------------------------- /sls-lambda-component/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-component/serverless.yml -------------------------------------------------------------------------------- /sls-lambda-component/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-component/src/api.js -------------------------------------------------------------------------------- /sls-lambda-component/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-component/src/package-lock.json -------------------------------------------------------------------------------- /sls-lambda-component/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-component/src/package.json -------------------------------------------------------------------------------- /sls-lambda-function-url/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-function-url/.gitignore -------------------------------------------------------------------------------- /sls-lambda-function-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-function-url/README.md -------------------------------------------------------------------------------- /sls-lambda-function-url/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-function-url/handler.js -------------------------------------------------------------------------------- /sls-lambda-function-url/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-function-url/serverless.yml -------------------------------------------------------------------------------- /sls-lambda-warmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-warmer/README.md -------------------------------------------------------------------------------- /sls-lambda-warmer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-warmer/package-lock.json -------------------------------------------------------------------------------- /sls-lambda-warmer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-warmer/package.json -------------------------------------------------------------------------------- /sls-lambda-warmer/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-warmer/serverless.yml -------------------------------------------------------------------------------- /sls-lambda-warmer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-lambda-warmer/src/index.js -------------------------------------------------------------------------------- /sls-local-mysql/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .serverless -------------------------------------------------------------------------------- /sls-local-mysql/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/code/package-lock.json -------------------------------------------------------------------------------- /sls-local-mysql/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/code/package.json -------------------------------------------------------------------------------- /sls-local-mysql/code/src/_tests/insert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/code/src/_tests/insert.test.js -------------------------------------------------------------------------------- /sls-local-mysql/code/src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/code/src/db.js -------------------------------------------------------------------------------- /sls-local-mysql/code/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/code/src/index.js -------------------------------------------------------------------------------- /sls-local-mysql/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/docker/Dockerfile -------------------------------------------------------------------------------- /sls-local-mysql/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/docker/README.md -------------------------------------------------------------------------------- /sls-local-mysql/docker/database-setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-local-mysql/docker/database-setup.sql -------------------------------------------------------------------------------- /sls-mediapipeline/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.editorconfig -------------------------------------------------------------------------------- /sls-mediapipeline/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.eslintignore -------------------------------------------------------------------------------- /sls-mediapipeline/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.eslintrc -------------------------------------------------------------------------------- /sls-mediapipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.gitignore -------------------------------------------------------------------------------- /sls-mediapipeline/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.12.1 2 | -------------------------------------------------------------------------------- /sls-mediapipeline/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.prettierignore -------------------------------------------------------------------------------- /sls-mediapipeline/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/.prettierrc -------------------------------------------------------------------------------- /sls-mediapipeline/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /sls-mediapipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/README.md -------------------------------------------------------------------------------- /sls-mediapipeline/config/stages/dev.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/config/stages/dev.sample.yml -------------------------------------------------------------------------------- /sls-mediapipeline/helpers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/helpers/main.js -------------------------------------------------------------------------------- /sls-mediapipeline/outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-mediapipeline/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/package-lock.json -------------------------------------------------------------------------------- /sls-mediapipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/package.json -------------------------------------------------------------------------------- /sls-mediapipeline/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-mediapipeline/resources/Cloudfront/oac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/resources/Cloudfront/oac.yml -------------------------------------------------------------------------------- /sls-mediapipeline/resources/DynamoDb/video.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/resources/DynamoDb/video.yml -------------------------------------------------------------------------------- /sls-mediapipeline/serverless.iam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/serverless.iam.yml -------------------------------------------------------------------------------- /sls-mediapipeline/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/serverless.yml -------------------------------------------------------------------------------- /sls-mediapipeline/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/.eslintrc -------------------------------------------------------------------------------- /sls-mediapipeline/src/@types/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-mediapipeline/src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/@types/global.d.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/@types/local.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/@types/local.d.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/@types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/@types/utils.d.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-mediapipeline/src/controllers/smil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/controllers/smil.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/analyze.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/fct.analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/fct.analyze.yml -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/fct.name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/fct.name.yml -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/fct.smil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/fct.smil.yml -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/mediaconvert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/mediaconvert.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/mediapackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/mediapackage.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/name.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/smil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/smil.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/handlers/stillDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/src/handlers/stillDetail.ts -------------------------------------------------------------------------------- /sls-mediapipeline/src/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sls-mediapipeline/stepFunctions/convert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/stepFunctions/convert.yml -------------------------------------------------------------------------------- /sls-mediapipeline/stepFunctions/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/stepFunctions/package.yml -------------------------------------------------------------------------------- /sls-mediapipeline/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mediapipeline/tsconfig.json -------------------------------------------------------------------------------- /sls-mysql-integration-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mysql-integration-testing/README.md -------------------------------------------------------------------------------- /sls-mysql-integration-testing/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mysql-integration-testing/code/.gitignore -------------------------------------------------------------------------------- /sls-mysql-integration-testing/code/src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mysql-integration-testing/code/src/db.js -------------------------------------------------------------------------------- /sls-mysql-integration-testing/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mysql-integration-testing/docker/README.md -------------------------------------------------------------------------------- /sls-mysql/.gitignore: -------------------------------------------------------------------------------- 1 | .serverless -------------------------------------------------------------------------------- /sls-mysql/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-mysql/serverless.yml -------------------------------------------------------------------------------- /sls-nlb-privateapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-nlb-privateapi/README.md -------------------------------------------------------------------------------- /sls-nlb-privateapi/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-nlb-privateapi/serverless.yml -------------------------------------------------------------------------------- /sls-performancetesting/01_simple/performanceTesting/artillery/.slsart: -------------------------------------------------------------------------------- 1 | version: 0.0.1 2 | -------------------------------------------------------------------------------- /sls-performancetesting/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-performancetesting/notes.md -------------------------------------------------------------------------------- /sls-pinpoint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pinpoint/.gitignore -------------------------------------------------------------------------------- /sls-pinpoint/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pinpoint/handler.js -------------------------------------------------------------------------------- /sls-pinpoint/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pinpoint/serverless.yml -------------------------------------------------------------------------------- /sls-pro-helper-scripts/.gitignore: -------------------------------------------------------------------------------- 1 | backup/ -------------------------------------------------------------------------------- /sls-pro-helper-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/README.md -------------------------------------------------------------------------------- /sls-pro-helper-scripts/example .env.insert: -------------------------------------------------------------------------------- 1 | APP_ID=1234567890 2 | APP_SECRET=afa92alkqjoejod02i041ml -------------------------------------------------------------------------------- /sls-pro-helper-scripts/images/newToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/images/newToken.png -------------------------------------------------------------------------------- /sls-pro-helper-scripts/images/profileIdTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/images/profileIdTo.png -------------------------------------------------------------------------------- /sls-pro-helper-scripts/images/slsOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/images/slsOrg.png -------------------------------------------------------------------------------- /sls-pro-helper-scripts/images/tokenMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/images/tokenMenu.png -------------------------------------------------------------------------------- /sls-pro-helper-scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/index.js -------------------------------------------------------------------------------- /sls-pro-helper-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-pro-helper-scripts/package.json -------------------------------------------------------------------------------- /sls-prune/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-prune/README.md -------------------------------------------------------------------------------- /sls-prune/index.js: -------------------------------------------------------------------------------- 1 | module.exports.handler = (event) => { return 'hello' }; -------------------------------------------------------------------------------- /sls-prune/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-prune/package-lock.json -------------------------------------------------------------------------------- /sls-prune/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-prune/package.json -------------------------------------------------------------------------------- /sls-prune/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-prune/serverless.yml -------------------------------------------------------------------------------- /sls-rds-proxy/.gitignore: -------------------------------------------------------------------------------- 1 | .serverless 2 | node_modules -------------------------------------------------------------------------------- /sls-rds-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/README.md -------------------------------------------------------------------------------- /sls-rds-proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/package-lock.json -------------------------------------------------------------------------------- /sls-rds-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/package.json -------------------------------------------------------------------------------- /sls-rds-proxy/rds/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/rds/serverless.yml -------------------------------------------------------------------------------- /sls-rds-proxy/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/serverless.yml -------------------------------------------------------------------------------- /sls-rds-proxy/sg/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/sg/serverless.yml -------------------------------------------------------------------------------- /sls-rds-proxy/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rds-proxy/src/handler.js -------------------------------------------------------------------------------- /sls-rest-to-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/README.md -------------------------------------------------------------------------------- /sls-rest-to-http/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/client/.gitignore -------------------------------------------------------------------------------- /sls-rest-to-http/client/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/client/handler.js -------------------------------------------------------------------------------- /sls-rest-to-http/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/client/package-lock.json -------------------------------------------------------------------------------- /sls-rest-to-http/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/client/package.json -------------------------------------------------------------------------------- /sls-rest-to-http/client/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/client/serverless.yml -------------------------------------------------------------------------------- /sls-rest-to-http/service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/service/.gitignore -------------------------------------------------------------------------------- /sls-rest-to-http/service/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/service/handler.js -------------------------------------------------------------------------------- /sls-rest-to-http/service/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/service/serverless.yml -------------------------------------------------------------------------------- /sls-rest-to-http/service/src/domain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/service/src/domain/index.js -------------------------------------------------------------------------------- /sls-rest-to-http/service/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-rest-to-http/service/src/handler.js -------------------------------------------------------------------------------- /sls-s3deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/.gitignore -------------------------------------------------------------------------------- /sls-s3deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/README.md -------------------------------------------------------------------------------- /sls-s3deploy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/package-lock.json -------------------------------------------------------------------------------- /sls-s3deploy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/package.json -------------------------------------------------------------------------------- /sls-s3deploy/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/serverless.yml -------------------------------------------------------------------------------- /sls-s3deploy/slsguruIPSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-s3deploy/slsguruIPSet.txt -------------------------------------------------------------------------------- /sls-service-proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-service-proxy/.gitignore -------------------------------------------------------------------------------- /sls-service-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-service-proxy/README.md -------------------------------------------------------------------------------- /sls-service-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-service-proxy/package.json -------------------------------------------------------------------------------- /sls-service-proxy/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-service-proxy/serverless.yml -------------------------------------------------------------------------------- /sls-sqsfifo-to-rds-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-sqsfifo-to-rds-mysql/README.md -------------------------------------------------------------------------------- /sls-sqsfifo-to-rds-mysql/artillery/script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-sqsfifo-to-rds-mysql/artillery/script.yml -------------------------------------------------------------------------------- /sls-sqsfifo-to-rds-mysql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-sqsfifo-to-rds-mysql/index.js -------------------------------------------------------------------------------- /sls-sqsfifo-to-rds-mysql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-sqsfifo-to-rds-mysql/package.json -------------------------------------------------------------------------------- /sls-sqsfifo-to-rds-mysql/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-sqsfifo-to-rds-mysql/serverless.yml -------------------------------------------------------------------------------- /sls-standard-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-standard-starter/.gitignore -------------------------------------------------------------------------------- /sls-standard-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-standard-starter/README.md -------------------------------------------------------------------------------- /sls-standard-starter/resources/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-standard-starter/resources/api/index.js -------------------------------------------------------------------------------- /sls-step-functions/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/.npmignore -------------------------------------------------------------------------------- /sls-step-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/README.md -------------------------------------------------------------------------------- /sls-step-functions/functions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/functions/add.js -------------------------------------------------------------------------------- /sls-step-functions/functions/multiply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/functions/multiply.js -------------------------------------------------------------------------------- /sls-step-functions/functions/subtract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/functions/subtract.js -------------------------------------------------------------------------------- /sls-step-functions/functions/validateResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/functions/validateResult.js -------------------------------------------------------------------------------- /sls-step-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/package-lock.json -------------------------------------------------------------------------------- /sls-step-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/package.json -------------------------------------------------------------------------------- /sls-step-functions/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-step-functions/serverless.yml -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/README.md -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | .serverless -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/jest-e2e.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/jest-e2e.config.json -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/jest-int.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/jest-int.config.json -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/package-lock.json -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/package.json -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/serverless.yml -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/src/db.js -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/code/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/code/src/index.js -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/docker/Dockerfile -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/docker/README.md -------------------------------------------------------------------------------- /sls-test-pyramid-vpc/docker/database-setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid-vpc/docker/database-setup.sql -------------------------------------------------------------------------------- /sls-test-pyramid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/README.md -------------------------------------------------------------------------------- /sls-test-pyramid/bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /sls-test-pyramid/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .serverless -------------------------------------------------------------------------------- /sls-test-pyramid/code/README.md: -------------------------------------------------------------------------------- 1 | # README # 2 | -------------------------------------------------------------------------------- /sls-test-pyramid/code/jest-e2e.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/jest-e2e.config.json -------------------------------------------------------------------------------- /sls-test-pyramid/code/jest-int.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/jest-int.config.json -------------------------------------------------------------------------------- /sls-test-pyramid/code/jest-unit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/jest-unit.config.json -------------------------------------------------------------------------------- /sls-test-pyramid/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/package-lock.json -------------------------------------------------------------------------------- /sls-test-pyramid/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/package.json -------------------------------------------------------------------------------- /sls-test-pyramid/code/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/serverless.yml -------------------------------------------------------------------------------- /sls-test-pyramid/code/src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/src/db/index.js -------------------------------------------------------------------------------- /sls-test-pyramid/code/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-test-pyramid/code/src/handler.js -------------------------------------------------------------------------------- /sls-waf-apigateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/.gitignore -------------------------------------------------------------------------------- /sls-waf-apigateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/README.md -------------------------------------------------------------------------------- /sls-waf-apigateway/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/handler.js -------------------------------------------------------------------------------- /sls-waf-apigateway/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/package-lock.json -------------------------------------------------------------------------------- /sls-waf-apigateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/package.json -------------------------------------------------------------------------------- /sls-waf-apigateway/resources/waf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/resources/waf.yml -------------------------------------------------------------------------------- /sls-waf-apigateway/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-waf-apigateway/serverless.yml -------------------------------------------------------------------------------- /sls-webpack/01_webpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/.gitignore -------------------------------------------------------------------------------- /sls-webpack/01_webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/README.md -------------------------------------------------------------------------------- /sls-webpack/01_webpack/copy-plugin-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/copy-plugin-zip.png -------------------------------------------------------------------------------- /sls-webpack/01_webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/index.js -------------------------------------------------------------------------------- /sls-webpack/01_webpack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/package-lock.json -------------------------------------------------------------------------------- /sls-webpack/01_webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/package.json -------------------------------------------------------------------------------- /sls-webpack/01_webpack/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/serverless.yml -------------------------------------------------------------------------------- /sls-webpack/01_webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/01_webpack/webpack.config.js -------------------------------------------------------------------------------- /sls-webpack/02_exampletwo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/02_exampletwo/package-lock.json -------------------------------------------------------------------------------- /sls-webpack/02_exampletwo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/02_exampletwo/package.json -------------------------------------------------------------------------------- /sls-webpack/02_exampletwo/services/billing/core: -------------------------------------------------------------------------------- 1 | ../../core -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/commonfiles/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/query/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/serviceA/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/serviceB/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/serviceC/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/handlers/serviceD/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/01_start/src/mapping-templates/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) 2 | -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/02_end/src/handlers/commonfiles/index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { } -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/02_end/src/mapping-templates/response.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) 2 | -------------------------------------------------------------------------------- /sls-webpack/03_refactoringToWebpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/03_refactoringToWebpack/README.md -------------------------------------------------------------------------------- /sls-webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/sls-webpack/README.md -------------------------------------------------------------------------------- /static-website-aws-serverless-website/public/css/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static-website-aws-serverless-website/public/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swim-ai-helloWorld/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/.classpath -------------------------------------------------------------------------------- /swim-ai-helloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/.gitignore -------------------------------------------------------------------------------- /swim-ai-helloWorld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/.project -------------------------------------------------------------------------------- /swim-ai-helloWorld/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/.vscode/settings.json -------------------------------------------------------------------------------- /swim-ai-helloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/README.md -------------------------------------------------------------------------------- /swim-ai-helloWorld/bin/main/api/server.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/bin/main/api/server.class -------------------------------------------------------------------------------- /swim-ai-helloWorld/bin/main/server.recon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/bin/main/server.recon -------------------------------------------------------------------------------- /swim-ai-helloWorld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/build.gradle -------------------------------------------------------------------------------- /swim-ai-helloWorld/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/client/client.js -------------------------------------------------------------------------------- /swim-ai-helloWorld/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/client/package-lock.json -------------------------------------------------------------------------------- /swim-ai-helloWorld/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/client/package.json -------------------------------------------------------------------------------- /swim-ai-helloWorld/gradle.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swim-ai-helloWorld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/gradlew -------------------------------------------------------------------------------- /swim-ai-helloWorld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-helloWorld/gradlew.bat -------------------------------------------------------------------------------- /swim-ai-sample-app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/.classpath -------------------------------------------------------------------------------- /swim-ai-sample-app/.gradle/6.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swim-ai-sample-app/.gradle/6.4/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swim-ai-sample-app/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sun Aug 23 13:41:01 IST 2020 2 | gradle.version=6.4 3 | -------------------------------------------------------------------------------- /swim-ai-sample-app/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swim-ai-sample-app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/.project -------------------------------------------------------------------------------- /swim-ai-sample-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/README.md -------------------------------------------------------------------------------- /swim-ai-sample-app/bin/main/app/server.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/bin/main/app/server.class -------------------------------------------------------------------------------- /swim-ai-sample-app/bin/main/server.recon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/bin/main/server.recon -------------------------------------------------------------------------------- /swim-ai-sample-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/build.gradle -------------------------------------------------------------------------------- /swim-ai-sample-app/build/scripts/setupGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/build/scripts/setupGuide -------------------------------------------------------------------------------- /swim-ai-sample-app/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: app.server 3 | 4 | -------------------------------------------------------------------------------- /swim-ai-sample-app/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/client.html -------------------------------------------------------------------------------- /swim-ai-sample-app/getTweets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-guru/templates/HEAD/swim-ai-sample-app/getTweets.js --------------------------------------------------------------------------------