├── .changeset ├── aggregate.mjs ├── config.json ├── config.json.bak ├── release ├── snapshot └── version ├── .eslintignore ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ └── issue-template.md └── workflows │ ├── assign-issues.yml │ ├── aws-cdk.yml │ ├── examples.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .gitpod.yml ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── api-auth-auth0 │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-cognito │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-facebook │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-google │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-jwt-auth0 │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── App.jsx │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.css │ │ │ │ ├── logo.svg │ │ │ │ ├── main.jsx │ │ │ │ └── sst-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-jwt-cognito-user-pool │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── App.jsx │ │ │ │ ├── components │ │ │ │ │ ├── Login.jsx │ │ │ │ │ └── Signup.jsx │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.css │ │ │ │ ├── logo.svg │ │ │ │ ├── main.jsx │ │ │ │ └── sst-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-lambda-authorizer-iam-response │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── authorizer.ts │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-lambda-authorizer-simple-response │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── authorizer.ts │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-auth-twitter │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-oauth-facebook │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── App.jsx │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.css │ │ │ │ ├── logo.svg │ │ │ │ ├── main.jsx │ │ │ │ └── sst-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-oauth-github │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── App.jsx │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.css │ │ │ │ ├── logo.svg │ │ │ │ ├── main.jsx │ │ │ │ └── sst-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ ├── public.ts │ │ │ ├── token.ts │ │ │ └── user.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-oauth-google │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── App.jsx │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.css │ │ │ │ ├── logo.svg │ │ │ │ ├── main.jsx │ │ │ │ └── sst-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── api-sst-auth-facebook │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── auth.ts │ │ │ └── session.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ ├── tsconfig.json │ └── web │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── favicon.svg │ │ ├── index.css │ │ ├── logo.svg │ │ └── main.jsx │ │ └── vite.config.js ├── api-sst-auth-google │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── auth.ts │ │ │ └── session.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ ├── tsconfig.json │ └── web │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── favicon.svg │ │ ├── index.css │ │ ├── logo.svg │ │ └── main.jsx │ │ └── vite.config.js ├── bucket-cloudfront │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── bucket-image-resize │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── resize.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── create-sst-dynamo │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── article.ts │ │ │ │ └── dynamo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── graphql │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── types │ │ │ │ │ └── article.ts │ │ │ ├── sst-env.d.ts │ │ │ ├── test │ │ │ │ └── graphql │ │ │ │ │ └── article.test.ts │ │ │ └── tsconfig.json │ │ ├── graphql │ │ │ ├── genql │ │ │ │ ├── index.ts │ │ │ │ ├── runtime │ │ │ │ │ ├── batcher.ts │ │ │ │ │ ├── createClient.ts │ │ │ │ │ ├── error.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── generateGraphqlOperation.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── linkTypeMap.ts │ │ │ │ │ ├── typeSelection.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── schema.graphql │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ ├── package.json │ │ │ ├── schema.graphql │ │ │ └── urql.ts │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── share.png │ │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Button.module.css │ │ │ │ ├── Button.tsx │ │ │ │ ├── Empty.module.css │ │ │ │ ├── Empty.tsx │ │ │ │ ├── Loading.module.css │ │ │ │ ├── Loading.tsx │ │ │ │ ├── Navbar.module.css │ │ │ │ └── Navbar.tsx │ │ │ ├── globals.css │ │ │ ├── main.tsx │ │ │ ├── pages │ │ │ │ ├── Article.module.css │ │ │ │ ├── Article.tsx │ │ │ │ ├── Home.module.css │ │ │ │ └── Home.tsx │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ ├── Api.ts │ │ ├── Database.ts │ │ └── Web.ts │ └── tsconfig.json ├── create-sst-rds │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── _templates │ │ └── migration │ │ │ └── new │ │ │ ├── migration.ejs.t │ │ │ └── prompt.cjs │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── migrations │ │ │ │ └── 1650000012557_article.mjs │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── article.ts │ │ │ │ ├── migrator.ts │ │ │ │ └── sql.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── graphql │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── types │ │ │ │ │ └── article.ts │ │ │ ├── sst-env.d.ts │ │ │ ├── test │ │ │ │ └── graphql │ │ │ │ │ └── article.test.ts │ │ │ └── tsconfig.json │ │ ├── graphql │ │ │ ├── genql │ │ │ │ ├── index.ts │ │ │ │ ├── runtime │ │ │ │ │ ├── batcher.ts │ │ │ │ │ ├── createClient.ts │ │ │ │ │ ├── error.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── generateGraphqlOperation.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── linkTypeMap.ts │ │ │ │ │ ├── typeSelection.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── schema.graphql │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ ├── package.json │ │ │ ├── schema.graphql │ │ │ └── urql.ts │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── share.png │ │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Button.module.css │ │ │ │ ├── Button.tsx │ │ │ │ ├── Empty.module.css │ │ │ │ ├── Empty.tsx │ │ │ │ ├── Loading.module.css │ │ │ │ ├── Loading.tsx │ │ │ │ ├── Navbar.module.css │ │ │ │ └── Navbar.tsx │ │ │ ├── globals.css │ │ │ ├── main.tsx │ │ │ ├── pages │ │ │ │ ├── Article.module.css │ │ │ │ ├── Article.tsx │ │ │ │ ├── Home.module.css │ │ │ │ └── Home.tsx │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ ├── Api.ts │ │ ├── Database.ts │ │ └── Web.ts │ └── tsconfig.json ├── cron-job │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── crud-api-dynamodb │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ ├── get.ts │ │ │ ├── list.ts │ │ │ └── update.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── datadog │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── eventbus │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── order.ts │ │ │ ├── receipt.ts │ │ │ └── shipping.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── expo-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .expo-shared │ │ │ │ └── assets.json │ │ │ ├── .gitignore │ │ │ ├── App.js │ │ │ ├── app.json │ │ │ ├── assets │ │ │ │ ├── adaptive-icon.png │ │ │ │ ├── favicon.png │ │ │ │ ├── icon.png │ │ │ │ └── splash.png │ │ │ ├── babel.config.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── flutter-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── .metadata │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ └── flutter_app │ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ ├── ios │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Runner-Bridging-Header.h │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── macos │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ │ └── app_icon_64.png │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Configs │ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Warnings.xcconfig │ │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ │ └── Release.entitlements │ │ │ ├── pubspec.lock │ │ │ ├── pubspec.yaml │ │ │ ├── test │ │ │ │ └── widget_test.dart │ │ │ └── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ ├── Icon-512.png │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ └── Icon-maskable-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── gatsby-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── gatsby-config.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── images │ │ │ │ └── icon.png │ │ │ │ └── pages │ │ │ │ ├── 404.js │ │ │ │ └── index.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── graphql-apollo │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── graphql-appsync │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── graphql │ │ │ │ ├── Note.ts │ │ │ │ ├── createNote.ts │ │ │ │ ├── deleteNote.ts │ │ │ │ ├── getNoteById.ts │ │ │ │ ├── listNotes.ts │ │ │ │ ├── schema.graphql │ │ │ │ └── updateNote.ts │ │ │ └── main.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── graphql-dynamo │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── article.ts │ │ │ │ └── dynamo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── graphql │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── types │ │ │ │ │ └── article.ts │ │ │ ├── sst-env.d.ts │ │ │ ├── test │ │ │ │ └── graphql │ │ │ │ │ └── article.test.ts │ │ │ └── tsconfig.json │ │ ├── graphql │ │ │ ├── genql │ │ │ │ ├── index.ts │ │ │ │ ├── runtime │ │ │ │ │ ├── batcher.ts │ │ │ │ │ ├── createClient.ts │ │ │ │ │ ├── error.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── generateGraphqlOperation.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── linkTypeMap.ts │ │ │ │ │ ├── typeSelection.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── schema.graphql │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ ├── package.json │ │ │ ├── schema.graphql │ │ │ └── urql.ts │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── share.png │ │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Button.module.css │ │ │ │ ├── Button.tsx │ │ │ │ ├── Empty.module.css │ │ │ │ ├── Empty.tsx │ │ │ │ ├── Loading.module.css │ │ │ │ ├── Loading.tsx │ │ │ │ ├── Navbar.module.css │ │ │ │ └── Navbar.tsx │ │ │ ├── globals.css │ │ │ ├── main.tsx │ │ │ ├── pages │ │ │ │ ├── Article.module.css │ │ │ │ ├── Article.tsx │ │ │ │ ├── Home.module.css │ │ │ │ └── Home.tsx │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ ├── Api.ts │ │ ├── Database.ts │ │ └── Web.ts │ └── tsconfig.json ├── graphql-rds │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── _templates │ │ └── migration │ │ │ └── new │ │ │ ├── migration.ejs.t │ │ │ └── prompt.cjs │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── migrations │ │ │ │ └── 1650000012557_article.mjs │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── article.ts │ │ │ │ ├── migrator.ts │ │ │ │ └── sql.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── graphql │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── types │ │ │ │ │ └── article.ts │ │ │ ├── sst-env.d.ts │ │ │ ├── test │ │ │ │ └── graphql │ │ │ │ │ └── article.test.ts │ │ │ └── tsconfig.json │ │ ├── graphql │ │ │ ├── genql │ │ │ │ ├── index.ts │ │ │ │ ├── runtime │ │ │ │ │ ├── batcher.ts │ │ │ │ │ ├── createClient.ts │ │ │ │ │ ├── error.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── generateGraphqlOperation.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── linkTypeMap.ts │ │ │ │ │ ├── typeSelection.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── schema.graphql │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ ├── package.json │ │ │ ├── schema.graphql │ │ │ └── urql.ts │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── share.png │ │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Button.module.css │ │ │ │ ├── Button.tsx │ │ │ │ ├── Empty.module.css │ │ │ │ ├── Empty.tsx │ │ │ │ ├── Loading.module.css │ │ │ │ ├── Loading.tsx │ │ │ │ ├── Navbar.module.css │ │ │ │ └── Navbar.tsx │ │ │ ├── globals.css │ │ │ ├── main.tsx │ │ │ ├── pages │ │ │ │ ├── Article.module.css │ │ │ │ ├── Article.tsx │ │ │ │ ├── Home.module.css │ │ │ │ └── Home.tsx │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ ├── Api.ts │ │ ├── Database.ts │ │ └── Web.ts │ └── tsconfig.json ├── intellij-idea │ ├── .env │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── intellij-idea.iml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── kinesisstream │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── consumer1.ts │ │ │ ├── consumer2.ts │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── layer-chrome-aws-lambda │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── lumigo │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── sst.json │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── middy-validator │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── nextjs-rds-drizzle │ ├── .gitignore │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── migrate.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── api │ │ │ │ └── users │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ │ ├── drizzle.config.ts │ │ │ ├── drizzle │ │ │ ├── db.ts │ │ │ ├── index.ts │ │ │ ├── migrate.ts │ │ │ └── schema.ts │ │ │ ├── migrations │ │ │ ├── 0000_slippery_stepford_cuckoos.sql │ │ │ └── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ └── _journal.json │ │ │ ├── next.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── next.svg │ │ │ └── vercel.svg │ │ │ ├── sst-env.d.ts │ │ │ ├── tailwind.config.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── Default.ts │ └── tsconfig.json ├── planetscale │ ├── .DS_Store │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── prisma │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── index.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── prisma │ │ ├── migrations │ │ │ ├── 20210917000038_first │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema.prisma │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── pub-sub │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── order.ts │ │ │ ├── receipt.ts │ │ │ └── shipping.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── queue │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── consumer.ts │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── quickstart-astro │ ├── .gitignore │ ├── README.md │ ├── astro.config.mjs │ ├── functions │ │ └── delete.ts │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── components │ │ │ └── Card.astro │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── Layout.astro │ │ ├── pages │ │ │ └── index.astro │ │ └── sst-env.d.ts │ ├── sst.config.ts │ └── tsconfig.json ├── quickstart-nextjs │ ├── .gitignore │ ├── README.md │ ├── functions │ │ └── delete.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── api │ │ │ └── hello.ts │ │ └── index.tsx │ ├── public │ │ ├── favicon.ico │ │ ├── next.svg │ │ ├── thirteen.svg │ │ └── vercel.svg │ ├── sst-env.d.ts │ ├── sst.config.ts │ ├── styles │ │ ├── Home.module.css │ │ └── globals.css │ └── tsconfig.json ├── quickstart-remix │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── root.tsx │ │ └── routes │ │ │ └── _index.tsx │ ├── functions │ │ └── delete.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── remix.config.js │ ├── remix.env.d.ts │ ├── sst-env.d.ts │ ├── sst.config.ts │ └── tsconfig.json ├── quickstart-solidstart │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── components │ │ │ ├── Counter.css │ │ │ └── Counter.tsx │ │ ├── entry-client.tsx │ │ ├── entry-server.tsx │ │ ├── functions │ │ │ └── delete.ts │ │ ├── root.css │ │ ├── root.tsx │ │ └── routes │ │ │ ├── [...404].tsx │ │ │ └── index.tsx │ ├── sst-env.d.ts │ ├── sst.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── quickstart-standalone │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── event.ts │ │ │ │ └── todo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── events │ │ │ │ │ └── todo-created.ts │ │ │ │ ├── lambda.ts │ │ │ │ └── todo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── web │ │ │ ├── .eslintrc.cjs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ └── vite.svg │ │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── MyStack.ts │ └── tsconfig.json ├── quickstart-sveltekit │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── functions │ │ │ └── delete.ts │ │ ├── lib │ │ │ └── images │ │ │ │ ├── github.svg │ │ │ │ ├── svelte-logo.svg │ │ │ │ ├── svelte-welcome.png │ │ │ │ └── svelte-welcome.webp │ │ ├── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── Counter.svelte │ │ │ ├── Header.svelte │ │ │ ├── about │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── styles.css │ │ │ └── sverdle │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── game.ts │ │ │ │ ├── how-to-play │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ │ ├── reduced-motion.ts │ │ │ │ └── words.server.ts │ │ └── sst-env.d.ts │ ├── sst.config.ts │ ├── static │ │ ├── favicon.png │ │ └── robots.txt │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── react-app-auth-cognito │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .env │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo192.png │ │ │ │ ├── logo512.png │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ └── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── App.test.js │ │ │ │ ├── components │ │ │ │ ├── Home.css │ │ │ │ ├── Home.js │ │ │ │ ├── Login.css │ │ │ │ ├── Login.js │ │ │ │ ├── Signup.css │ │ │ │ └── Signup.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── hooksLib.js │ │ │ │ ├── reportWebVitals.js │ │ │ │ └── setupTests.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── private.ts │ │ │ └── public.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── react-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .env │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo192.png │ │ │ │ ├── logo512.png │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ └── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── App.test.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── logo.svg │ │ │ │ ├── reportWebVitals.js │ │ │ │ └── setupTests.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── remix-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .eslintrc │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── entry.client.tsx │ │ │ │ ├── entry.server.tsx │ │ │ │ ├── models │ │ │ │ │ └── counter.server.ts │ │ │ │ ├── root.tsx │ │ │ │ ├── routes │ │ │ │ │ └── index.tsx │ │ │ │ └── styles │ │ │ │ │ └── index.css │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── remix.config.js │ │ │ ├── remix.env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-api-csharp │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Api.csproj │ ├── README.md │ ├── functions │ │ └── Lambda.cs │ ├── package.json │ ├── services │ │ ├── Api │ │ │ ├── Api.csproj │ │ │ ├── Handlers.cs │ │ │ └── Note.cs │ │ └── db │ │ │ └── notes.py │ ├── sst.config.ts │ └── tsconfig.json ├── rest-api-custom-domain │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-api-dynamodb │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-api-go │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── db │ │ └── notes.go │ ├── functions │ │ └── lambda │ │ │ └── main.go │ ├── go.mod │ ├── go.sum │ ├── package.json │ ├── packages │ │ └── functions │ │ │ └── src │ │ │ ├── get.go │ │ │ ├── list.go │ │ │ └── update.go │ ├── sst.config.ts │ └── tsconfig.json ├── rest-api-mongodb │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-api-postgresql │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── services │ │ └── migrations │ │ │ └── first.mjs │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-api-python │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Pipfile │ ├── README.md │ ├── functions │ │ ├── lambda.py │ │ └── requirements.txt │ ├── package.json │ ├── packages │ │ └── functions │ │ │ └── src │ │ │ ├── get.py │ │ │ ├── list.py │ │ │ └── update.py │ ├── services │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── db │ │ │ └── notes.py │ │ └── requirements.txt │ ├── sst.config.ts │ └── tsconfig.json ├── rest-api-rust │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── functions │ │ └── lambda │ │ │ └── main.rs │ ├── package.json │ ├── sst.config.ts │ └── tsconfig.json ├── rest-api │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── notes.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── get.ts │ │ │ ├── list.ts │ │ │ └── update.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── rest-services │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── get.ts │ │ │ ├── list.ts │ │ │ └── update.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── services │ │ └── notes.ts │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── sentry │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── stack-tests │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ ├── ExampleStack.ts │ │ └── test │ │ │ └── ExampleStack.test.ts │ └── tsconfig.json ├── standard-api │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── event.ts │ │ │ │ └── todo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── events │ │ │ │ └── todo-created.ts │ │ │ ├── lambda.ts │ │ │ └── todo.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── MyStack.ts │ └── tsconfig.json ├── standard-nextjs │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── functions │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── next.config.mjs │ │ │ ├── package.json │ │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── _document.tsx │ │ │ ├── api │ │ │ │ └── hello.ts │ │ │ └── index.tsx │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── next.svg │ │ │ └── vercel.svg │ │ │ ├── sst-env.d.ts │ │ │ ├── styles │ │ │ ├── Home.module.css │ │ │ └── globals.css │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── Default.ts │ └── tsconfig.json ├── svelte-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── jsconfig.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── src │ │ │ │ ├── App.svelte │ │ │ │ ├── assets │ │ │ │ │ └── svelte.png │ │ │ │ ├── lib │ │ │ │ │ └── Counter.svelte │ │ │ │ ├── main.js │ │ │ │ └── vite-env.d.ts │ │ │ └── vite.config.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── vscode │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── vue-app │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ ├── frontend │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── babel.config.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ └── index.html │ │ │ └── src │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ └── logo.png │ │ │ │ └── main.js │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── lambda.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json ├── websocket │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── core │ │ │ ├── package.json │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ │ └── functions │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── connect.ts │ │ │ ├── disconnect.ts │ │ │ └── sendMessage.ts │ │ │ ├── sst-env.d.ts │ │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ │ └── ExampleStack.ts │ └── tsconfig.json └── webstorm │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ ├── vcs.xml │ └── webstorm-debugging.iml │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── README.md │ ├── package.json │ ├── packages │ ├── core │ │ ├── package.json │ │ ├── sst-env.d.ts │ │ └── tsconfig.json │ └── functions │ │ ├── package.json │ │ ├── src │ │ └── lambda.ts │ │ ├── sst-env.d.ts │ │ └── tsconfig.json │ ├── pnpm-workspace.yaml │ ├── sst.config.ts │ ├── stacks │ └── ExampleStack.ts │ └── tsconfig.json ├── package.json ├── packages ├── console │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ ├── _redirects │ │ ├── favicon.svg │ │ ├── graphql.html │ │ ├── logo.svg │ │ └── og.png │ ├── src │ │ ├── App │ │ │ ├── Stage │ │ │ │ ├── Api │ │ │ │ │ └── index.tsx │ │ │ │ ├── Buckets │ │ │ │ │ ├── Detail.tsx │ │ │ │ │ ├── dnd.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Cognito │ │ │ │ │ └── index.tsx │ │ │ │ ├── Dynamo │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Functions │ │ │ │ │ ├── CWInvocation.tsx │ │ │ │ │ ├── Detail.tsx │ │ │ │ │ ├── Invocation.tsx │ │ │ │ │ ├── Issues.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── GraphQL │ │ │ │ │ └── index.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Local │ │ │ │ │ └── index.tsx │ │ │ │ ├── Panel.tsx │ │ │ │ ├── RDS │ │ │ │ │ └── index.tsx │ │ │ │ ├── Stacks │ │ │ │ │ └── index.tsx │ │ │ │ ├── components.tsx │ │ │ │ ├── hooks.ts │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── Accordion.tsx │ │ │ ├── Anchor.tsx │ │ │ ├── Badge.tsx │ │ │ ├── Button.tsx │ │ │ ├── DropdownMenu.tsx │ │ │ ├── HoverCard.tsx │ │ │ ├── Input.tsx │ │ │ ├── JsonView.tsx │ │ │ ├── Logo.tsx │ │ │ ├── Popover.tsx │ │ │ ├── Row.tsx │ │ │ ├── Scroller.tsx │ │ │ ├── SidePanel.tsx │ │ │ ├── Spacer.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── Splash.tsx │ │ │ ├── Stack.tsx │ │ │ ├── Table.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── Textarea.tsx │ │ │ ├── Toast.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── index.ts │ │ │ └── useOnScreen.ts │ │ ├── data │ │ │ ├── aws │ │ │ │ ├── api.ts │ │ │ │ ├── client.ts │ │ │ │ ├── cognito.ts │ │ │ │ ├── dynamodb.ts │ │ │ │ ├── function.ts │ │ │ │ ├── index.ts │ │ │ │ ├── rds.ts │ │ │ │ ├── s3.ts │ │ │ │ └── stacks.ts │ │ │ ├── global.ts │ │ │ └── trpc.ts │ │ ├── favicon.svg │ │ ├── main.tsx │ │ ├── stitches.config.ts │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── create-sst │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ ├── create-sst.mjs │ │ └── presets │ │ │ ├── base │ │ │ ├── example │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── javascript │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── launch.json │ │ │ │ │ └── settings.json │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── package.json │ │ │ │ │ └── sst.config.ts │ │ │ ├── monorepo │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── packages │ │ │ │ │ ├── core │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── functions │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── pnpm-workspace.yaml │ │ │ └── typescript │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ └── tsconfig.json │ │ │ ├── dropin │ │ │ ├── astro │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── astro.config.mjs │ │ │ │ │ ├── src │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ └── sst.config.ts │ │ │ ├── container │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ └── sst.config.ts │ │ │ ├── nextjs │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ └── sst.config.ts │ │ │ ├── remix │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ └── sst.config.ts │ │ │ ├── solid │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ └── vite.config.ts │ │ │ └── svelte │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ ├── src │ │ │ │ └── sst-env.d.ts │ │ │ │ ├── sst.config.ts │ │ │ │ └── svelte.config.js │ │ │ ├── examples │ │ │ ├── api-auth-auth0 │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-cognito │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-facebook │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-google │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-jwt-auth0 │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.jsx │ │ │ │ │ │ │ ├── favicon.svg │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── main.jsx │ │ │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-jwt-cognito-user-pool │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.jsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Login.jsx │ │ │ │ │ │ │ │ └── Signup.jsx │ │ │ │ │ │ │ ├── favicon.svg │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── main.jsx │ │ │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-lambda-authorizer-iam-response │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── authorizer.ts │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-lambda-authorizer-simple-response │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── authorizer.ts │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-auth-twitter │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-oauth-facebook │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.jsx │ │ │ │ │ │ │ ├── favicon.svg │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── main.jsx │ │ │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-oauth-github │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.jsx │ │ │ │ │ │ │ ├── favicon.svg │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── main.jsx │ │ │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ ├── public.ts │ │ │ │ │ │ ├── token.ts │ │ │ │ │ │ └── user.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-oauth-google │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.jsx │ │ │ │ │ │ │ ├── favicon.svg │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── main.jsx │ │ │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── api-sst-auth-facebook │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ └── session.ts │ │ │ │ │ ├── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ │ │ └── web │ │ │ │ │ └── src │ │ │ │ │ ├── App.jsx │ │ │ │ │ └── index.css │ │ │ ├── api-sst-auth-google │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ └── session.ts │ │ │ │ │ ├── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ │ │ └── web │ │ │ │ │ └── src │ │ │ │ │ ├── App.jsx │ │ │ │ │ └── index.css │ │ │ ├── bucket-cloudfront │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── bucket-image-resize │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── resize.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── create-sst-dynamo │ │ │ ├── create-sst-rds │ │ │ ├── cron-job │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── crud-api-dynamodb │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── delete.ts │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── datadog │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── eventbus │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── order.ts │ │ │ │ │ │ ├── receipt.ts │ │ │ │ │ │ └── shipping.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── expo-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── .expo-shared │ │ │ │ │ │ │ └── assets.json │ │ │ │ │ │ ├── App.js │ │ │ │ │ │ ├── app.json │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── adaptive-icon.png │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── yarn.lock │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── flutter-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── .metadata │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── analysis_options.yaml │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ │ │ │ └── flutter_app │ │ │ │ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ │ ├── gradle.properties │ │ │ │ │ │ │ ├── gradle │ │ │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ │ │ └── settings.gradle │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── ios │ │ │ │ │ │ │ ├── Flutter │ │ │ │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ │ │ │ └── Release.xcconfig │ │ │ │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ │ │ ├── Runner │ │ │ │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Runner-Bridging-Header.h │ │ │ │ │ │ │ └── gitignore │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── main.dart │ │ │ │ │ │ ├── macos │ │ │ │ │ │ │ ├── Flutter │ │ │ │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ ├── Runner │ │ │ │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ │ │ │ │ │ └── app_icon_64.png │ │ │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ │ │ ├── Configs │ │ │ │ │ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ │ │ │ │ └── Warnings.xcconfig │ │ │ │ │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ │ │ │ │ └── Release.entitlements │ │ │ │ │ │ │ └── gitignore │ │ │ │ │ │ ├── pubspec.lock │ │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── widget_test.dart │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── Icon-192.png │ │ │ │ │ │ │ ├── Icon-512.png │ │ │ │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ │ │ │ └── Icon-maskable-512.png │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── manifest.json │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── gatsby-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gatsby-config.js │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── 404.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── graphql-apollo │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── graphql-appsync │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── Note.ts │ │ │ │ │ │ ├── createNote.ts │ │ │ │ │ │ ├── deleteNote.ts │ │ │ │ │ │ ├── getNoteById.ts │ │ │ │ │ │ ├── listNotes.ts │ │ │ │ │ │ ├── schema.graphql │ │ │ │ │ │ └── updateNote.ts │ │ │ │ │ │ └── main.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── graphql-dynamo │ │ │ ├── graphql-rds │ │ │ ├── intellij-idea │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── .env │ │ │ │ │ ├── .idea │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ └── Project_Default.xml │ │ │ │ │ ├── intellij-idea.iml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── runConfigurations.xml │ │ │ │ │ └── vcs.xml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── kinesisstream │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── consumer1.ts │ │ │ │ │ │ ├── consumer2.ts │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── layer-chrome-aws-lambda │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── lumigo │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ ├── sst.json │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── middy-validator │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── nextjs-rds-drizzle │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── packages │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── migrate.ts │ │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── web │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── globals.css │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── drizzle.config.ts │ │ │ │ │ │ ├── drizzle │ │ │ │ │ │ ├── db.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── migrate.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0000_slippery_stepford_cuckoos.sql │ │ │ │ │ │ └── meta │ │ │ │ │ │ │ ├── 0000_snapshot.json │ │ │ │ │ │ │ └── _journal.json │ │ │ │ │ │ ├── next-env.d.ts │ │ │ │ │ │ ├── next.config.mjs │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ └── vercel.svg │ │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ │ ├── tailwind.config.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── Default.ts │ │ │ ├── planetscale │ │ │ │ ├── .DS_Store │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── prisma │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── prisma │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 20210917000038_first │ │ │ │ │ │ │ └── migration.sql │ │ │ │ │ │ └── migration_lock.toml │ │ │ │ │ └── schema.prisma │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── pub-sub │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── order.ts │ │ │ │ │ │ ├── receipt.ts │ │ │ │ │ │ └── shipping.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── queue │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── consumer.ts │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── quickstart-astro │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── astro.config.mjs │ │ │ │ │ ├── functions │ │ │ │ │ └── delete.ts │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ └── favicon.svg │ │ │ │ │ ├── src │ │ │ │ │ ├── components │ │ │ │ │ │ └── Card.astro │ │ │ │ │ ├── env.d.ts │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── Layout.astro │ │ │ │ │ ├── pages │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ └── tsconfig.json │ │ │ ├── quickstart-nextjs │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── functions │ │ │ │ │ └── delete.ts │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── next-env.d.ts │ │ │ │ │ ├── next.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── _app.tsx │ │ │ │ │ ├── _document.tsx │ │ │ │ │ ├── api │ │ │ │ │ │ └── hello.ts │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── next.svg │ │ │ │ │ ├── thirteen.svg │ │ │ │ │ └── vercel.svg │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ ├── styles │ │ │ │ │ ├── Home.module.css │ │ │ │ │ └── globals.css │ │ │ │ │ └── tsconfig.json │ │ │ ├── quickstart-remix │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── .eslintrc.mjs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app │ │ │ │ │ ├── entry.client.tsx │ │ │ │ │ ├── entry.server.tsx │ │ │ │ │ ├── root.tsx │ │ │ │ │ └── routes │ │ │ │ │ │ └── _index.tsx │ │ │ │ │ ├── functions │ │ │ │ │ └── delete.ts │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ └── vite.config.ts │ │ │ ├── quickstart-solidstart │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── src │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Counter.css │ │ │ │ │ │ └── Counter.tsx │ │ │ │ │ ├── entry-client.tsx │ │ │ │ │ ├── entry-server.tsx │ │ │ │ │ ├── functions │ │ │ │ │ │ └── delete.ts │ │ │ │ │ ├── root.css │ │ │ │ │ ├── root.tsx │ │ │ │ │ └── routes │ │ │ │ │ │ ├── [...404].tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ └── vite.config.ts │ │ │ ├── quickstart-standalone │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── web │ │ │ │ │ │ └── src │ │ │ │ │ │ └── App.tsx │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── MyStack.ts │ │ │ ├── quickstart-sveltekit │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── .npmrc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── app.d.ts │ │ │ │ │ ├── app.html │ │ │ │ │ ├── functions │ │ │ │ │ │ └── delete.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ │ ├── svelte-logo.svg │ │ │ │ │ │ │ ├── svelte-welcome.png │ │ │ │ │ │ │ └── svelte-welcome.webp │ │ │ │ │ ├── routes │ │ │ │ │ │ ├── +layout.svelte │ │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ ├── +page.ts │ │ │ │ │ │ ├── Counter.svelte │ │ │ │ │ │ ├── Header.svelte │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ │ └── +page.ts │ │ │ │ │ │ ├── styles.css │ │ │ │ │ │ └── sverdle │ │ │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ │ ├── game.ts │ │ │ │ │ │ │ ├── how-to-play │ │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ │ └── +page.ts │ │ │ │ │ │ │ ├── reduced-motion.ts │ │ │ │ │ │ │ └── words.server.ts │ │ │ │ │ └── sst-env.d.ts │ │ │ │ │ ├── sst.config.ts │ │ │ │ │ ├── static │ │ │ │ │ ├── favicon.png │ │ │ │ │ └── robots.txt │ │ │ │ │ ├── svelte.config.js │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ └── vite.config.ts │ │ │ ├── react-app-auth-cognito │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── .env │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── logo192.png │ │ │ │ │ │ │ ├── logo512.png │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ └── robots.txt │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.css │ │ │ │ │ │ │ ├── App.js │ │ │ │ │ │ │ ├── App.test.js │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Home.css │ │ │ │ │ │ │ ├── Home.js │ │ │ │ │ │ │ ├── Login.css │ │ │ │ │ │ │ ├── Login.js │ │ │ │ │ │ │ ├── Signup.css │ │ │ │ │ │ │ └── Signup.js │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── hooksLib.js │ │ │ │ │ │ │ ├── reportWebVitals.js │ │ │ │ │ │ │ └── setupTests.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── private.ts │ │ │ │ │ │ └── public.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── react-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── .env │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── logo192.png │ │ │ │ │ │ │ ├── logo512.png │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ └── robots.txt │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.css │ │ │ │ │ │ │ ├── App.js │ │ │ │ │ │ │ ├── App.test.js │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ │ ├── reportWebVitals.js │ │ │ │ │ │ │ └── setupTests.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── remix-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── entry.client.tsx │ │ │ │ │ │ ├── entry.server.tsx │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ └── counter.server.ts │ │ │ │ │ │ ├── root.tsx │ │ │ │ │ │ ├── routes │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.css │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── remix.config.js │ │ │ │ │ │ ├── remix.env.d.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-api-csharp │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ └── services │ │ │ │ │ ├── Api │ │ │ │ │ ├── Api.csproj │ │ │ │ │ ├── Handlers.cs │ │ │ │ │ └── Note.cs │ │ │ │ │ └── db │ │ │ │ │ └── notes.py │ │ │ ├── rest-api-custom-domain │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-api-dynamodb │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-api-go │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── db │ │ │ │ │ └── notes.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── packages │ │ │ │ │ └── functions │ │ │ │ │ └── src │ │ │ │ │ ├── get.go │ │ │ │ │ ├── list.go │ │ │ │ │ └── update.go │ │ │ ├── rest-api-mongodb │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-api-postgresql │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ ├── services │ │ │ │ │ └── migrations │ │ │ │ │ │ └── first.mjs │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-api-python │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── Pipfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── get.py │ │ │ │ │ │ ├── list.py │ │ │ │ │ │ └── update.py │ │ │ │ │ └── services │ │ │ │ │ ├── Pipfile │ │ │ │ │ ├── Pipfile.lock │ │ │ │ │ ├── db │ │ │ │ │ └── notes.py │ │ │ │ │ └── requirements.txt │ │ │ ├── rest-api-rust │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ └── README.md │ │ │ ├── rest-api │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── core │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── notes.ts │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── rest-services │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ ├── services │ │ │ │ │ └── notes.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── sentry │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── stack-tests │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ └── stacks │ │ │ │ │ ├── ExampleStack.ts │ │ │ │ │ └── test │ │ │ │ │ └── ExampleStack.test.ts │ │ │ ├── standard-api │ │ │ ├── standard-nextjs │ │ │ ├── svelte-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jsconfig.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.svelte │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── svelte.png │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── Counter.svelte │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vite-env.d.ts │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── vscode │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── vue-app │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ ├── frontend │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.vue │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ └── main.js │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── lambda.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ ├── websocket │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── README.md │ │ │ │ │ ├── packages │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── disconnect.ts │ │ │ │ │ │ └── sendMessage.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── ExampleStack.ts │ │ │ └── webstorm │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ ├── .idea │ │ │ │ ├── gitignore │ │ │ │ ├── inspectionProfiles │ │ │ │ │ └── Project_Default.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── vcs.xml │ │ │ │ └── webstorm-debugging.iml │ │ │ │ ├── README.md │ │ │ │ ├── packages │ │ │ │ └── functions │ │ │ │ │ └── src │ │ │ │ │ └── lambda.ts │ │ │ │ └── stacks │ │ │ │ └── ExampleStack.ts │ │ │ ├── graphql │ │ │ ├── basic │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── packages │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ │ │ ├── graphql.ts │ │ │ │ │ │ │ │ └── schema.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── article.test.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── schema.graphql │ │ │ │ │ │ └── urql.ts │ │ │ │ │ └── web │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── public │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── share.png │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Button.module.css │ │ │ │ │ │ │ ├── Button.tsx │ │ │ │ │ │ │ ├── Empty.module.css │ │ │ │ │ │ │ ├── Empty.tsx │ │ │ │ │ │ │ ├── Loading.module.css │ │ │ │ │ │ │ ├── Loading.tsx │ │ │ │ │ │ │ ├── Navbar.module.css │ │ │ │ │ │ │ └── Navbar.tsx │ │ │ │ │ │ ├── globals.css │ │ │ │ │ │ ├── main.tsx │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── Article.module.css │ │ │ │ │ │ │ ├── Article.tsx │ │ │ │ │ │ │ ├── Home.module.css │ │ │ │ │ │ │ └── Home.tsx │ │ │ │ │ │ └── vite.config.ts │ │ │ │ │ └── stacks │ │ │ │ │ ├── Api.ts │ │ │ │ │ └── Web.ts │ │ │ ├── dynamo │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── packages │ │ │ │ │ ├── core │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── article.ts │ │ │ │ │ │ │ └── dynamo.ts │ │ │ │ │ └── functions │ │ │ │ │ │ └── src │ │ │ │ │ │ └── graphql │ │ │ │ │ │ └── types │ │ │ │ │ │ └── article.ts │ │ │ │ │ └── stacks │ │ │ │ │ └── Database.ts │ │ │ └── rds │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ ├── _templates │ │ │ │ └── migration │ │ │ │ │ └── new │ │ │ │ │ ├── migration.ejs.t │ │ │ │ │ └── prompt.cjs │ │ │ │ ├── packages │ │ │ │ ├── core │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── 1650000012557_article.mjs │ │ │ │ │ └── src │ │ │ │ │ │ ├── article.ts │ │ │ │ │ │ ├── migrator.ts │ │ │ │ │ │ └── sql.ts │ │ │ │ └── functions │ │ │ │ │ └── src │ │ │ │ │ └── graphql │ │ │ │ │ └── types │ │ │ │ │ └── article.ts │ │ │ │ └── stacks │ │ │ │ └── Database.ts │ │ │ ├── other │ │ │ ├── csharp │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── Api.csproj │ │ │ │ │ ├── functions │ │ │ │ │ └── Lambda.cs │ │ │ │ │ └── sst.config.ts │ │ │ ├── fsharp │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── Api.fsproj │ │ │ │ │ ├── functions │ │ │ │ │ └── Lambda.fs │ │ │ │ │ └── sst.config.ts │ │ │ ├── go │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── functions │ │ │ │ │ └── lambda │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── go.mod │ │ │ │ │ └── sst.config.ts │ │ │ ├── java │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── api │ │ │ │ │ │ └── Handler.java │ │ │ │ │ └── sst.config.ts │ │ │ ├── python │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ │ ├── functions │ │ │ │ │ ├── lambda.py │ │ │ │ │ └── requirements.txt │ │ │ │ │ └── sst.config.ts │ │ │ └── rust │ │ │ │ ├── preset.mjs │ │ │ │ └── templates │ │ │ │ ├── Cargo.toml │ │ │ │ ├── functions │ │ │ │ └── lambda │ │ │ │ │ └── main.rs │ │ │ │ └── sst.config.ts │ │ │ └── standard │ │ │ ├── api │ │ │ ├── preset.mjs │ │ │ └── templates │ │ │ │ ├── packages │ │ │ │ ├── core │ │ │ │ │ └── src │ │ │ │ │ │ ├── event.ts │ │ │ │ │ │ └── todo.ts │ │ │ │ └── functions │ │ │ │ │ └── src │ │ │ │ │ ├── events │ │ │ │ │ └── todo-created.ts │ │ │ │ │ ├── lambda.ts │ │ │ │ │ └── todo.ts │ │ │ │ └── stacks │ │ │ │ └── MyStack.ts │ │ │ └── nextjs │ │ │ ├── preset.mjs │ │ │ └── templates │ │ │ ├── packages │ │ │ └── web │ │ │ │ └── sst-env.d.ts │ │ │ └── stacks │ │ │ └── Default.ts │ ├── package.json │ ├── src │ │ └── index.mjs │ └── tsconfig.json ├── solid-start-sst │ ├── CHANGELOG.md │ ├── README.md │ ├── entry-edge.mjs │ ├── entry.mjs │ ├── index.d.ts │ ├── index.mjs │ └── package.json ├── sst │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── build.mjs │ ├── dist │ │ └── package.json │ ├── package.json │ ├── src │ │ ├── bootstrap.ts │ │ ├── bus.ts │ │ ├── cache.ts │ │ ├── cdk │ │ │ ├── deploy-stack.ts.bk │ │ │ ├── deployments-wrapper.ts.bk │ │ │ ├── deployments.ts.bk │ │ │ └── util.ts │ │ ├── cli │ │ │ ├── ci-info.ts │ │ │ ├── colors.ts │ │ │ ├── commands │ │ │ │ ├── bind.ts │ │ │ │ ├── bootstrap.ts │ │ │ │ ├── build.ts │ │ │ │ ├── console.ts │ │ │ │ ├── deploy.tsx │ │ │ │ ├── dev.tsx │ │ │ │ ├── diff.ts │ │ │ │ ├── plugins │ │ │ │ │ ├── kysely.ts │ │ │ │ │ ├── pothos.ts │ │ │ │ │ └── warmer.ts │ │ │ │ ├── remove.tsx │ │ │ │ ├── secrets │ │ │ │ │ ├── get.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── load.ts │ │ │ │ │ ├── remove.ts │ │ │ │ │ ├── secrets.ts │ │ │ │ │ └── set.ts │ │ │ │ ├── telemetry.ts │ │ │ │ ├── transform.ts │ │ │ │ ├── types.ts │ │ │ │ ├── update.ts │ │ │ │ └── version.ts │ │ │ ├── local │ │ │ │ ├── router.ts │ │ │ │ └── server.ts │ │ │ ├── program.ts │ │ │ ├── spinner.ts │ │ │ ├── sst.ts │ │ │ ├── telemetry │ │ │ │ ├── environment.ts │ │ │ │ ├── post-payload.ts │ │ │ │ ├── project-id.ts │ │ │ │ └── telemetry.ts │ │ │ ├── terminal.ts │ │ │ └── ui │ │ │ │ ├── deploy.tsx │ │ │ │ ├── functions.tsx │ │ │ │ ├── header.ts │ │ │ │ └── stack.ts │ │ ├── config.ts │ │ ├── constructs │ │ │ ├── Api.ts │ │ │ ├── ApiGatewayV1Api.ts │ │ │ ├── App.ts │ │ │ ├── AppSyncApi.ts │ │ │ ├── AstroSite.ts │ │ │ ├── AstroSite.tsdoc.ts │ │ │ ├── Auth.ts │ │ │ ├── BaseSite.ts │ │ │ ├── Bucket.ts │ │ │ ├── Cognito.ts │ │ │ ├── Config.ts │ │ │ ├── Construct.ts │ │ │ ├── Cron.ts │ │ │ ├── Distribution.ts │ │ │ ├── EdgeFunction.ts │ │ │ ├── EventBus.ts │ │ │ ├── Function.ts │ │ │ ├── FunctionalStack.ts │ │ │ ├── Job.ts │ │ │ ├── KinesisStream.ts │ │ │ ├── Metadata.ts │ │ │ ├── NextjsSite.ts │ │ │ ├── Parameter.ts │ │ │ ├── Queue.ts │ │ │ ├── RDS.ts │ │ │ ├── RemixSite.ts │ │ │ ├── RemixSite.tsdoc.ts │ │ │ ├── Script.ts │ │ │ ├── Secret.ts │ │ │ ├── Service.ts │ │ │ ├── SolidStartSite.ts │ │ │ ├── SolidStartSite.tsdoc.ts │ │ │ ├── SsrFunction.ts │ │ │ ├── SsrSite.ts │ │ │ ├── Stack.ts │ │ │ ├── StaticSite.ts │ │ │ ├── SvelteKitSite.ts │ │ │ ├── SvelteKitSite.tsdoc.ts │ │ │ ├── Table.ts │ │ │ ├── Topic.ts │ │ │ ├── WebSocketApi.ts │ │ │ ├── cdk │ │ │ │ ├── HttpAwsIntegration.ts │ │ │ │ ├── certificate-base.ts │ │ │ │ ├── dns-validated-certificate.ts │ │ │ │ └── website-redirect.ts │ │ │ ├── context.ts │ │ │ ├── deferred_task.ts │ │ │ ├── deprecated │ │ │ │ ├── NextjsSite.ts │ │ │ │ ├── cross-region-helper.ts │ │ │ │ └── index.ts │ │ │ ├── descs.d.ts │ │ │ ├── future │ │ │ │ ├── Auth.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── static-file-list.ts │ │ │ └── util │ │ │ │ ├── apiGatewayV1AccessLog.ts │ │ │ │ ├── apiGatewayV2AccessLog.ts │ │ │ │ ├── apiGatewayV2Cors.ts │ │ │ │ ├── apiGatewayV2Domain.ts │ │ │ │ ├── appSyncApiDomain.ts │ │ │ │ ├── astroRouteCompressor.ts │ │ │ │ ├── binding.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── compareSemver.ts │ │ │ │ ├── duration.ts │ │ │ │ ├── functionUrlCors.ts │ │ │ │ ├── permission.ts │ │ │ │ ├── size.ts │ │ │ │ └── warning.ts │ │ ├── context │ │ │ ├── context.ts │ │ │ ├── context2.ts │ │ │ ├── handler.ts │ │ │ └── index.ts │ │ ├── credentials.ts │ │ ├── error.ts │ │ ├── index.ts │ │ ├── iot.ts │ │ ├── logger.ts │ │ ├── node │ │ │ ├── actor │ │ │ │ └── index.ts │ │ │ ├── api │ │ │ │ └── index.ts │ │ │ ├── auth │ │ │ │ ├── adapter │ │ │ │ │ ├── adapter.ts │ │ │ │ │ ├── facebook.ts │ │ │ │ │ ├── github.ts │ │ │ │ │ ├── google.ts │ │ │ │ │ ├── link.ts │ │ │ │ │ ├── oauth.ts │ │ │ │ │ ├── oidc.ts │ │ │ │ │ └── twitch.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── index.ts │ │ │ │ └── session.ts │ │ │ ├── bucket │ │ │ │ └── index.ts │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── event-bus │ │ │ │ └── index.ts │ │ │ ├── function │ │ │ │ └── index.ts │ │ │ ├── future │ │ │ │ └── auth │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adapter │ │ │ │ │ ├── adapter.ts │ │ │ │ │ ├── apple.ts │ │ │ │ │ ├── code.ts │ │ │ │ │ ├── facebook.ts │ │ │ │ │ ├── github.ts │ │ │ │ │ ├── google.ts │ │ │ │ │ ├── link.ts │ │ │ │ │ ├── microsoft.ts │ │ │ │ │ ├── oauth.ts │ │ │ │ │ ├── oidc.ts │ │ │ │ │ └── spotify.ts │ │ │ │ │ ├── encryption.ts │ │ │ │ │ ├── handler.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── proxy.ts │ │ │ │ │ └── session.ts │ │ │ ├── graphql │ │ │ │ └── index.ts │ │ │ ├── job │ │ │ │ └── index.ts │ │ │ ├── kinesis-stream │ │ │ │ └── index.ts │ │ │ ├── queue │ │ │ │ └── index.ts │ │ │ ├── rds │ │ │ │ └── index.ts │ │ │ ├── service │ │ │ │ └── index.ts │ │ │ ├── site │ │ │ │ └── index.ts │ │ │ ├── table │ │ │ │ └── index.ts │ │ │ ├── topic │ │ │ │ └── index.ts │ │ │ ├── util │ │ │ │ ├── index.ts │ │ │ │ └── loader.ts │ │ │ └── websocket-api │ │ │ │ └── index.ts │ │ ├── pothos.ts │ │ ├── project.ts │ │ ├── runtime │ │ │ ├── handlers.ts │ │ │ ├── handlers │ │ │ │ ├── container.ts │ │ │ │ ├── dotnet.ts │ │ │ │ ├── go.ts │ │ │ │ ├── java.ts │ │ │ │ ├── node.ts │ │ │ │ ├── python.ts │ │ │ │ ├── pythonBundling.ts │ │ │ │ └── rust.ts │ │ │ ├── iot.ts │ │ │ ├── runtime.ts │ │ │ ├── server.ts │ │ │ └── workers.ts │ │ ├── stacks │ │ │ ├── app-metadata.ts │ │ │ ├── assembly.ts │ │ │ ├── build.ts │ │ │ ├── deploy.ts │ │ │ ├── diff.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ ├── monitor.ts │ │ │ ├── remove.ts │ │ │ └── synth.ts │ │ ├── util │ │ │ ├── error.ts │ │ │ ├── fs.ts │ │ │ ├── lazy.ts │ │ │ ├── module.ts │ │ │ ├── process.ts │ │ │ ├── semaphore.ts │ │ │ ├── user-configuration.ts │ │ │ └── wsl.ts │ │ └── watcher.ts │ ├── support │ │ ├── base-site-archiver.cjs │ │ ├── bootstrap-metadata-function │ │ │ └── index.ts │ │ ├── bridge │ │ │ ├── Dockerfile │ │ │ └── live-lambda.ts │ │ ├── certificate-requestor │ │ │ └── index.mjs │ │ ├── custom-resources │ │ │ ├── apigateway-cloudwatch-role.ts │ │ │ ├── asset-replacer.ts │ │ │ ├── auth-keys.ts │ │ │ ├── cfn-response.ts │ │ │ ├── cloudfront-invalidator.ts │ │ │ ├── function-invoker.ts │ │ │ ├── index.ts │ │ │ ├── s3-uploader.ts │ │ │ ├── secret-prefetcher.ts │ │ │ ├── sourcemap-uploader.ts │ │ │ └── util.ts │ │ ├── dotnet31-bootstrap │ │ │ ├── .gitignore │ │ │ ├── Program.cs │ │ │ ├── dotnet-bootstrap.csproj │ │ │ └── release │ │ │ │ ├── Amazon.Lambda.Core.dll │ │ │ │ ├── Amazon.Lambda.RuntimeSupport.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── dotnet-bootstrap │ │ │ │ ├── dotnet-bootstrap.deps.json │ │ │ │ ├── dotnet-bootstrap.dll │ │ │ │ ├── dotnet-bootstrap.pdb │ │ │ │ └── dotnet-bootstrap.runtimeconfig.json │ │ ├── dotnet6-bootstrap │ │ │ ├── .gitignore │ │ │ ├── Program.cs │ │ │ ├── dotnet-bootstrap.csproj │ │ │ └── release │ │ │ │ ├── Amazon.Lambda.Core.dll │ │ │ │ ├── Amazon.Lambda.RuntimeSupport.dll │ │ │ │ ├── dotnet-bootstrap │ │ │ │ ├── dotnet-bootstrap.deps.json │ │ │ │ ├── dotnet-bootstrap.dll │ │ │ │ ├── dotnet-bootstrap.pdb │ │ │ │ └── dotnet-bootstrap.runtimeconfig.json │ │ ├── dotnet8-bootstrap │ │ │ ├── .gitignore │ │ │ ├── Program.cs │ │ │ ├── dotnet-bootstrap.csproj │ │ │ └── release │ │ │ │ ├── Amazon.Lambda.Core.dll │ │ │ │ ├── Amazon.Lambda.RuntimeSupport.dll │ │ │ │ ├── dotnet-bootstrap │ │ │ │ ├── dotnet-bootstrap.deps.json │ │ │ │ ├── dotnet-bootstrap.dll │ │ │ │ ├── dotnet-bootstrap.pdb │ │ │ │ └── dotnet-bootstrap.runtimeconfig.json │ │ ├── edge-function │ │ │ ├── cfn-response.ts │ │ │ ├── edge-lambda-version.ts │ │ │ ├── edge-lambda.ts │ │ │ ├── s3-bucket.ts │ │ │ └── util.ts │ │ ├── event-bus-retrier │ │ │ └── index.ts │ │ ├── java-runtime │ │ │ ├── install.sh │ │ │ ├── pom.xml │ │ │ └── release │ │ │ │ ├── aws-lambda-java-core-1.2.0.jar │ │ │ │ ├── aws-lambda-java-runtime-interface-client-1.1.0.jar │ │ │ │ └── aws-lambda-java-serialization-1.0.0.jar │ │ ├── job-manager │ │ │ └── index.ts │ │ ├── nixpacks │ │ │ └── Dockerfile │ │ ├── nodejs-runtime │ │ │ └── index.ts │ │ ├── python-runtime │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.custom │ │ │ ├── Dockerfile.dependencies │ │ │ └── runtime.py │ │ ├── rds-migrator │ │ │ └── index.mjs │ │ ├── remix-site-function │ │ │ ├── edge-server.js │ │ │ ├── polyfill.js │ │ │ └── regional-server.js │ │ ├── script-function │ │ │ ├── cfn-response.ts │ │ │ ├── index.ts │ │ │ └── util.ts │ │ ├── service-dev-function │ │ │ └── index.js │ │ ├── signing-function │ │ │ ├── helpers │ │ │ │ ├── cloudFrontHeadersToHeaderBag.ts │ │ │ │ ├── getRegionFromCustomDomainName.ts │ │ │ │ ├── getSigV4.ts │ │ │ │ ├── headerBagToCloudFrontHeaders.ts │ │ │ │ ├── index.ts │ │ │ │ └── queryStringToQueryParameterBag.ts │ │ │ └── index.ts │ │ ├── sls-nextjs-site-build-helper │ │ │ ├── build.cjs │ │ │ └── index-wrapper.js │ │ ├── sls-nextjs-site-function-code-replacer │ │ │ └── lambda-code-updater.py │ │ ├── sls-nextjs-site-stub │ │ │ └── index.html │ │ ├── ssr-site-function-archiver.cjs │ │ ├── ssr-site-function-stub │ │ │ └── index.js │ │ ├── ssr-warmer │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test │ │ ├── constructs │ │ │ ├── Api.test.ts │ │ │ ├── ApiGatewayV1Api.test.ts │ │ │ ├── App.test.ts │ │ │ ├── AppSyncApi.test.ts │ │ │ ├── Auth.test.ts │ │ │ ├── Bucket.test.ts │ │ │ ├── Cognito.test.ts │ │ │ ├── Cron.test.ts │ │ │ ├── Distribution.test.ts │ │ │ ├── EventBus.test.ts │ │ │ ├── Function.test.ts │ │ │ ├── FunctionalStack.test.ts │ │ │ ├── Job.test.ts │ │ │ ├── KinesisStream.test.ts │ │ │ ├── NextjsSite.test.ts │ │ │ ├── Queue.test.ts │ │ │ ├── RDS.test.ts │ │ │ ├── RemixSite.test.ts │ │ │ ├── Script.test.ts │ │ │ ├── Service.test.ts │ │ │ ├── SsrFunction.test.ts │ │ │ ├── Stack.test.ts │ │ │ ├── StaticSite.test.ts │ │ │ ├── Table.test.ts │ │ │ ├── Topic.test.ts │ │ │ ├── WebSocketApi.test.ts │ │ │ ├── apiGatewayV2AccessLog.test.ts │ │ │ ├── appsync │ │ │ │ ├── schema.graphql │ │ │ │ └── schema2.graphql │ │ │ ├── container-function │ │ │ │ ├── Dockerfile │ │ │ │ └── lambda.js │ │ │ ├── helper.ts │ │ │ ├── lambda.js │ │ │ ├── lambda │ │ │ │ └── fn.ts │ │ │ ├── migrations │ │ │ │ └── base.js │ │ │ ├── nextjs-site │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── next.config.js │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── pages │ │ │ │ │ ├── _app.tsx │ │ │ │ │ ├── _document.tsx │ │ │ │ │ ├── api │ │ │ │ │ │ └── hello.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── next.svg │ │ │ │ │ ├── thirteen.svg │ │ │ │ │ └── vercel.svg │ │ │ │ ├── sst-env.d.ts │ │ │ │ ├── styles │ │ │ │ │ ├── Home.module.css │ │ │ │ │ └── globals.css │ │ │ │ └── tsconfig.json │ │ │ ├── remix-site │ │ │ │ ├── .eslintrc │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── app │ │ │ │ │ ├── entry.client.tsx │ │ │ │ │ ├── entry.server.tsx │ │ │ │ │ ├── root.tsx │ │ │ │ │ └── routes │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── foo │ │ │ │ │ │ └── bar │ │ │ │ │ │ └── baz │ │ │ │ ├── remix.config.js │ │ │ │ ├── remix.env.d.ts │ │ │ │ ├── sst-env.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── service-custom-Dockerfile │ │ │ │ ├── child │ │ │ │ │ └── Dockerfile.prod │ │ │ │ └── index.html │ │ │ ├── service │ │ │ │ ├── Dockerfile │ │ │ │ └── index.html │ │ │ ├── site │ │ │ │ ├── build-with-30b-data │ │ │ │ │ ├── 24byte.html │ │ │ │ │ └── 6byte.html │ │ │ │ ├── build │ │ │ │ │ └── index.html │ │ │ │ ├── error.html │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ └── sst-env.d.ts │ │ │ ├── sst.config.ts │ │ │ └── vite-static-site │ │ │ │ ├── .gitignore │ │ │ │ ├── build │ │ │ │ └── index.html │ │ │ │ ├── error.html │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ └── vite.config.js │ │ ├── node │ │ │ └── context.test.ts │ │ └── project.test.ts │ ├── tsconfig.json │ └── vitest.config.ts └── svelte-kit-sst │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── handler │ │ ├── binary.ts │ │ ├── event-mapper.ts │ │ ├── index.ts │ │ └── logger.ts │ └── index.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── seed.yml ├── turbo.json └── www ├── .gitignore ├── CHANGELOG.md ├── babel.config.js ├── config.js ├── docs ├── about.module.css ├── advanced │ ├── bootstrapping.md │ ├── connecting-via-proxy.md │ ├── console-updates.md │ ├── cross-stack-references.md │ ├── customizing-ssm-parameters.md │ ├── environment-specific-resources.md │ ├── extending-sst.md │ ├── iam-credentials.md │ ├── importing-resources.md │ ├── lambda-layers.md │ ├── linting-and-type-checking.md │ ├── monitoring.md │ ├── permission-boundary.md │ ├── removal-policy.md │ ├── source-maps.md │ └── tagging-resources.md ├── anonymous-telemetry.md ├── apis.md ├── auth.md ├── clients │ ├── api.md │ ├── auth.md │ ├── bucket.md │ ├── config.md │ ├── event-bus.md │ ├── function.md │ ├── graphql.md │ ├── index.md │ ├── job.md │ ├── kinesis-stream.md │ ├── queue.md │ ├── rds.md │ ├── service.md │ ├── site.md │ ├── table.md │ └── topic.md ├── config.md ├── configuring-sst.md ├── console.md ├── constructs │ ├── Api.about.md │ ├── Api.md │ ├── ApiGatewayV1Api.about.md │ ├── ApiGatewayV1Api.md │ ├── App.about.md │ ├── App.md │ ├── AppSyncApi.about.md │ ├── AppSyncApi.md │ ├── AstroSite.about.md │ ├── AstroSite.md │ ├── Auth.about.md │ ├── Auth.md │ ├── Bucket.about.md │ ├── Bucket.md │ ├── Cognito.about.md │ ├── Cognito.md │ ├── Cron.about.md │ ├── Cron.md │ ├── Duration.md │ ├── EventBus.about.md │ ├── EventBus.md │ ├── Function.about.md │ ├── Function.md │ ├── Job.about.md │ ├── Job.md │ ├── KinesisStream.about.md │ ├── KinesisStream.md │ ├── NextjsSite.about.md │ ├── NextjsSite.md │ ├── Parameter.about.md │ ├── Parameter.md │ ├── Permissions.md │ ├── Queue.about.md │ ├── Queue.md │ ├── RDS.about.md │ ├── RDS.md │ ├── RemixSite.about.md │ ├── RemixSite.md │ ├── Script.about.md │ ├── Script.md │ ├── Secret.about.md │ ├── Secret.md │ ├── Service.about.md │ ├── Service.md │ ├── Size.md │ ├── SolidStartSite.about.md │ ├── SolidStartSite.md │ ├── Stack.about.md │ ├── Stack.md │ ├── StaticSite.about.md │ ├── StaticSite.md │ ├── SvelteKitSite.about.md │ ├── SvelteKitSite.md │ ├── Table.about.md │ ├── Table.md │ ├── Topic.about.md │ ├── Topic.md │ ├── WebSocketApi.about.md │ ├── WebSocketApi.md │ ├── index.md │ ├── v0 │ │ ├── Api.md │ │ ├── ApiGatewayV1Api.md │ │ ├── App.md │ │ ├── AppSyncApi.md │ │ ├── Auth.md │ │ ├── Bucket.md │ │ ├── Cron.md │ │ ├── DebugApp.md │ │ ├── DebugStack.md │ │ ├── EventBus.md │ │ ├── Function.md │ │ ├── GraphQLApi.md │ │ ├── KinesisStream.md │ │ ├── NextjsSite.md │ │ ├── Permissions.md │ │ ├── Queue.md │ │ ├── RDS.md │ │ ├── ReactStaticSite.md │ │ ├── Script.md │ │ ├── Stack.md │ │ ├── StaticSite.md │ │ ├── Table.md │ │ ├── Topic.md │ │ ├── ViteStaticSite.md │ │ ├── WebSocketApi.md │ │ ├── index.md │ │ └── migration.md │ └── v1 │ │ ├── Api.about.md │ │ ├── Api.md │ │ ├── Api.tsdoc.md │ │ ├── ApiGatewayV1Api.about.md │ │ ├── ApiGatewayV1Api.md │ │ ├── ApiGatewayV1Api.tsdoc.md │ │ ├── App.about.md │ │ ├── App.md │ │ ├── App.tsdoc.md │ │ ├── AppSyncApi.about.md │ │ ├── AppSyncApi.md │ │ ├── AppSyncApi.tsdoc.md │ │ ├── Auth.about.md │ │ ├── Auth.md │ │ ├── Auth.tsdoc.md │ │ ├── Bucket.about.md │ │ ├── Bucket.md │ │ ├── Bucket.tsdoc.md │ │ ├── Cognito.about.md │ │ ├── Cognito.md │ │ ├── Cognito.tsdoc.md │ │ ├── Cron.about.md │ │ ├── Cron.md │ │ ├── Cron.tsdoc.md │ │ ├── DebugApp.about.md │ │ ├── DebugApp.md │ │ ├── DebugApp.tsdoc.md │ │ ├── DebugStack.about.md │ │ ├── DebugStack.md │ │ ├── DebugStack.tsdoc.md │ │ ├── Duration.md │ │ ├── EventBus.about.md │ │ ├── EventBus.md │ │ ├── EventBus.tsdoc.md │ │ ├── Function.about.md │ │ ├── Function.md │ │ ├── Function.tsdoc.md │ │ ├── GraphQLApi.about.md │ │ ├── GraphQLApi.md │ │ ├── GraphQLApi.tsdoc.md │ │ ├── Job.about.md │ │ ├── Job.md │ │ ├── Job.tsdoc.md │ │ ├── KinesisStream.about.md │ │ ├── KinesisStream.md │ │ ├── KinesisStream.tsdoc.md │ │ ├── NextjsSite.about.md │ │ ├── NextjsSite.md │ │ ├── NextjsSite.tsdoc.md │ │ ├── Parameter.about.md │ │ ├── Parameter.md │ │ ├── Parameter.tsdoc.md │ │ ├── Permissions.md │ │ ├── Queue.about.md │ │ ├── Queue.md │ │ ├── Queue.tsdoc.md │ │ ├── RDS.about.md │ │ ├── RDS.md │ │ ├── RDS.tsdoc.md │ │ ├── ReactStaticSite.about.md │ │ ├── ReactStaticSite.md │ │ ├── ReactStaticSite.tsdoc.md │ │ ├── RemixSite.about.md │ │ ├── RemixSite.md │ │ ├── RemixSite.tsdoc.md │ │ ├── Script.about.md │ │ ├── Script.md │ │ ├── Script.tsdoc.md │ │ ├── Secret.about.md │ │ ├── Secret.md │ │ ├── Secret.tsdoc.md │ │ ├── Size.md │ │ ├── Stack.about.md │ │ ├── Stack.md │ │ ├── Stack.tsdoc.md │ │ ├── StaticSite.about.md │ │ ├── StaticSite.md │ │ ├── StaticSite.tsdoc.md │ │ ├── Table.about.md │ │ ├── Table.md │ │ ├── Table.tsdoc.md │ │ ├── Topic.about.md │ │ ├── Topic.md │ │ ├── Topic.tsdoc.md │ │ ├── ViteStaticSite.about.md │ │ ├── ViteStaticSite.md │ │ ├── ViteStaticSite.tsdoc.md │ │ ├── WebSocketApi.about.md │ │ ├── WebSocketApi.md │ │ ├── WebSocketApi.tsdoc.md │ │ └── index.md ├── containers.md ├── cron-jobs.md ├── custom-domains.md ├── databases.md ├── design-principles.md ├── editor-integration.md ├── events.md ├── faq.md ├── file-uploads.md ├── going-to-production.md ├── index.md ├── known-issues.md ├── learn │ ├── add-api-types.md │ ├── breakpoint-debugging.md │ ├── create-a-new-project.md │ ├── database-options.md │ ├── deploy-to-prod.md │ ├── domain-driven-design.md │ ├── git-push-to-deploy.md │ ├── graphql-api.md │ ├── index.md │ ├── initialize-the-database.md │ ├── make-updates.md │ ├── project-structure.md │ ├── queries-and-mutations.md │ ├── render-queries.md │ ├── start-the-frontend.md │ ├── write-to-dynamodb.md │ └── write-to-the-database.md ├── live-lambda-development.md ├── long-running-jobs.md ├── migrating │ ├── cdk.md │ ├── serverless-framework.md │ └── vercel.md ├── packages │ ├── create-sst.md │ └── sst.md ├── queues.md ├── resource-binding.md ├── setting-up-aws.md ├── start │ ├── astro.md │ ├── nextjs.md │ ├── remix.md │ ├── solid.md │ ├── standalone.md │ └── svelte.md ├── testing.md ├── upgrade-guide.md ├── video.module.css ├── what-is-sst.md └── working-with-your-team.md ├── docusaurus.config.js ├── drafts ├── _monorepo-project-structure.md └── _storage.md ├── generate.mjs ├── package.json ├── sidebars.js ├── src ├── components │ ├── ChangeText.js │ ├── ChangeText.module.css │ ├── HeadlineText.js │ ├── HeadlineText.module.css │ ├── MultiApiCode.js │ ├── MultiLanguageCode.js │ ├── MultiPackagerCode.js │ ├── MultiSiteCode.js │ ├── PricingCalculator.js │ └── PricingCalculator.module.css ├── css │ └── custom.css └── theme │ └── DocItem │ └── index.js └── static ├── .nojekyll └── img ├── astro └── bootstrap-astro.png ├── astrosite └── error-stack-trace.png ├── breakpoint-debugging ├── breakpoint-triggered.png ├── resume.png ├── set-breakpoint.png └── start-debugging.png ├── components └── keyboard.svg ├── console ├── sst-console-connect-aws-account.png ├── sst-console-create-cloudformation-stack.png ├── sst-console-create-new-workspace.png ├── sst-console-invite-user.png ├── sst-console-issues-alert.png ├── sst-console-issues.png ├── sst-console-local-tab.png ├── sst-console-log-modes.png ├── sst-console-logs.png ├── sst-console-resources.png ├── sst-console-tailing-local-logs.png └── sst-console-template-url.png ├── deploy-to-prod └── app-deployed-to-prod.png ├── editor-setup ├── vs-code-autocomplete.png ├── vs-code-tsdoc.png └── vs-code-typesafe.png ├── favicon.ico ├── going-to-production └── aws-iam-console-add-identity-provider.png ├── implement-rds ├── console-query-comment.png └── run-migration.png ├── initialize-database ├── console-apply-migration.png ├── console-query-article.png └── console-rds-tab.png ├── learn └── completed-sst-app.png ├── logo.svg ├── logos ├── astro.svg ├── nextjs.svg ├── remix.svg ├── solid.svg └── svelte.svg ├── long-running-jobs └── sst-console-job.png ├── make-updates └── new-comment-added-in-the-articles-page.png ├── nextjs └── bootstrap-nextjs.png ├── nextjssite ├── error-stack-trace.png ├── per-route-logging.png └── sourcemap-files.png ├── og-image.png ├── remix └── bootstrap-remix.png ├── render-queries └── comment-count-for-articles-in-homepage.png ├── screens ├── iam-permissions-leapp-enter-mfa.png ├── iam-permissions-leapp-setup.png ├── vite-environment-variables-autocomplete.png └── vs-code-debug-sst-start.png ├── solid-start └── bootstrap-solid-start.png ├── star.svg ├── start-frontend ├── console-create-article-log.png ├── console-load-articles-log.png ├── create-article.png └── load-homepage.png ├── start ├── astro-site-in-the-sst-console.png ├── nextjs-app-in-the-sst-console.png ├── remix-app-in-the-sst-console.png ├── solidstart-app-deployed-to-aws-with-sst.png ├── solidstart-app-in-the-sst-console.png ├── sst-app-in-the-sst-console.png └── sveltekit-site-in-the-sst-console.png └── svelte-kit └── bootstrap-svelte-kit.png /.changeset/aggregate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.changeset/aggregate.mjs -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/config.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.changeset/config.json.bak -------------------------------------------------------------------------------- /.changeset/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.changeset/release -------------------------------------------------------------------------------- /.changeset/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.changeset/snapshot -------------------------------------------------------------------------------- /.changeset/version: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | pnpm changeset version 5 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.eslintignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Prettier bulk format 2 | 1a2f103016036a9fc99c37f252abc765c2256964 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/workflows/assign-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/workflows/assign-issues.yml -------------------------------------------------------------------------------- /.github/workflows/aws-cdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/workflows/aws-cdk.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | # pnpm prettier 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.prettierignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/README.md -------------------------------------------------------------------------------- /examples/api-auth-auth0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-auth0/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-auth0/README.md -------------------------------------------------------------------------------- /examples/api-auth-auth0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-auth0/package.json -------------------------------------------------------------------------------- /examples/api-auth-auth0/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-auth0/sst.config.ts -------------------------------------------------------------------------------- /examples/api-auth-auth0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-auth0/tsconfig.json -------------------------------------------------------------------------------- /examples/api-auth-cognito/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-cognito/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-cognito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-cognito/README.md -------------------------------------------------------------------------------- /examples/api-auth-cognito/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-cognito/package.json -------------------------------------------------------------------------------- /examples/api-auth-cognito/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-cognito/sst.config.ts -------------------------------------------------------------------------------- /examples/api-auth-cognito/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-cognito/tsconfig.json -------------------------------------------------------------------------------- /examples/api-auth-facebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-facebook/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-facebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-facebook/README.md -------------------------------------------------------------------------------- /examples/api-auth-facebook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-facebook/package.json -------------------------------------------------------------------------------- /examples/api-auth-facebook/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-facebook/sst.config.ts -------------------------------------------------------------------------------- /examples/api-auth-facebook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-facebook/tsconfig.json -------------------------------------------------------------------------------- /examples/api-auth-google/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-google/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-google/README.md -------------------------------------------------------------------------------- /examples/api-auth-google/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-google/package.json -------------------------------------------------------------------------------- /examples/api-auth-google/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-google/sst.config.ts -------------------------------------------------------------------------------- /examples/api-auth-google/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-google/tsconfig.json -------------------------------------------------------------------------------- /examples/api-auth-jwt-auth0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-jwt-auth0/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-jwt-auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-jwt-auth0/README.md -------------------------------------------------------------------------------- /examples/api-auth-jwt-auth0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-jwt-auth0/package.json -------------------------------------------------------------------------------- /examples/api-auth-twitter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-twitter/.gitignore -------------------------------------------------------------------------------- /examples/api-auth-twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-twitter/README.md -------------------------------------------------------------------------------- /examples/api-auth-twitter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-twitter/package.json -------------------------------------------------------------------------------- /examples/api-auth-twitter/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-twitter/sst.config.ts -------------------------------------------------------------------------------- /examples/api-auth-twitter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-auth-twitter/tsconfig.json -------------------------------------------------------------------------------- /examples/api-oauth-facebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-facebook/.gitignore -------------------------------------------------------------------------------- /examples/api-oauth-facebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-facebook/README.md -------------------------------------------------------------------------------- /examples/api-oauth-facebook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-facebook/package.json -------------------------------------------------------------------------------- /examples/api-oauth-github/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-github/.gitignore -------------------------------------------------------------------------------- /examples/api-oauth-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-github/README.md -------------------------------------------------------------------------------- /examples/api-oauth-github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-github/package.json -------------------------------------------------------------------------------- /examples/api-oauth-github/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-github/sst.config.ts -------------------------------------------------------------------------------- /examples/api-oauth-github/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-github/tsconfig.json -------------------------------------------------------------------------------- /examples/api-oauth-google/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-google/.gitignore -------------------------------------------------------------------------------- /examples/api-oauth-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-google/README.md -------------------------------------------------------------------------------- /examples/api-oauth-google/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-google/package.json -------------------------------------------------------------------------------- /examples/api-oauth-google/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-google/sst.config.ts -------------------------------------------------------------------------------- /examples/api-oauth-google/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-oauth-google/tsconfig.json -------------------------------------------------------------------------------- /examples/api-sst-auth-facebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-sst-auth-facebook/README.md -------------------------------------------------------------------------------- /examples/api-sst-auth-google/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-sst-auth-google/.gitignore -------------------------------------------------------------------------------- /examples/api-sst-auth-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/api-sst-auth-google/README.md -------------------------------------------------------------------------------- /examples/bucket-cloudfront/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-cloudfront/.gitignore -------------------------------------------------------------------------------- /examples/bucket-cloudfront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-cloudfront/README.md -------------------------------------------------------------------------------- /examples/bucket-cloudfront/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-cloudfront/package.json -------------------------------------------------------------------------------- /examples/bucket-cloudfront/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-cloudfront/sst.config.ts -------------------------------------------------------------------------------- /examples/bucket-cloudfront/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-cloudfront/tsconfig.json -------------------------------------------------------------------------------- /examples/bucket-image-resize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-image-resize/.gitignore -------------------------------------------------------------------------------- /examples/bucket-image-resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/bucket-image-resize/README.md -------------------------------------------------------------------------------- /examples/create-sst-dynamo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/.gitignore -------------------------------------------------------------------------------- /examples/create-sst-dynamo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/package.json -------------------------------------------------------------------------------- /examples/create-sst-dynamo/packages/web/src/pages/Article.module.css: -------------------------------------------------------------------------------- 1 | .article { 2 | padding: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /examples/create-sst-dynamo/packages/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/create-sst-dynamo/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/sst.config.ts -------------------------------------------------------------------------------- /examples/create-sst-dynamo/stacks/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/stacks/Api.ts -------------------------------------------------------------------------------- /examples/create-sst-dynamo/stacks/Web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/stacks/Web.ts -------------------------------------------------------------------------------- /examples/create-sst-dynamo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-dynamo/tsconfig.json -------------------------------------------------------------------------------- /examples/create-sst-rds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/.gitignore -------------------------------------------------------------------------------- /examples/create-sst-rds/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/package.json -------------------------------------------------------------------------------- /examples/create-sst-rds/packages/web/src/pages/Article.module.css: -------------------------------------------------------------------------------- 1 | .article { 2 | padding: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /examples/create-sst-rds/packages/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/create-sst-rds/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/sst.config.ts -------------------------------------------------------------------------------- /examples/create-sst-rds/stacks/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/stacks/Api.ts -------------------------------------------------------------------------------- /examples/create-sst-rds/stacks/Web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/stacks/Web.ts -------------------------------------------------------------------------------- /examples/create-sst-rds/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/create-sst-rds/tsconfig.json -------------------------------------------------------------------------------- /examples/cron-job/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/.gitignore -------------------------------------------------------------------------------- /examples/cron-job/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/.vscode/launch.json -------------------------------------------------------------------------------- /examples/cron-job/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/.vscode/settings.json -------------------------------------------------------------------------------- /examples/cron-job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/README.md -------------------------------------------------------------------------------- /examples/cron-job/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/package.json -------------------------------------------------------------------------------- /examples/cron-job/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/cron-job/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/sst.config.ts -------------------------------------------------------------------------------- /examples/cron-job/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/cron-job/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/cron-job/tsconfig.json -------------------------------------------------------------------------------- /examples/crud-api-dynamodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/crud-api-dynamodb/.gitignore -------------------------------------------------------------------------------- /examples/crud-api-dynamodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/crud-api-dynamodb/README.md -------------------------------------------------------------------------------- /examples/crud-api-dynamodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/crud-api-dynamodb/package.json -------------------------------------------------------------------------------- /examples/crud-api-dynamodb/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/crud-api-dynamodb/sst.config.ts -------------------------------------------------------------------------------- /examples/crud-api-dynamodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/crud-api-dynamodb/tsconfig.json -------------------------------------------------------------------------------- /examples/datadog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/.gitignore -------------------------------------------------------------------------------- /examples/datadog/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/.vscode/launch.json -------------------------------------------------------------------------------- /examples/datadog/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/.vscode/settings.json -------------------------------------------------------------------------------- /examples/datadog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/README.md -------------------------------------------------------------------------------- /examples/datadog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/package.json -------------------------------------------------------------------------------- /examples/datadog/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/datadog/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/sst.config.ts -------------------------------------------------------------------------------- /examples/datadog/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/datadog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/datadog/tsconfig.json -------------------------------------------------------------------------------- /examples/eventbus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/.gitignore -------------------------------------------------------------------------------- /examples/eventbus/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/.vscode/launch.json -------------------------------------------------------------------------------- /examples/eventbus/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/.vscode/settings.json -------------------------------------------------------------------------------- /examples/eventbus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/README.md -------------------------------------------------------------------------------- /examples/eventbus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/package.json -------------------------------------------------------------------------------- /examples/eventbus/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/eventbus/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/sst.config.ts -------------------------------------------------------------------------------- /examples/eventbus/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/eventbus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/eventbus/tsconfig.json -------------------------------------------------------------------------------- /examples/expo-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/.gitignore -------------------------------------------------------------------------------- /examples/expo-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/expo-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/.vscode/settings.json -------------------------------------------------------------------------------- /examples/expo-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/README.md -------------------------------------------------------------------------------- /examples/expo-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/package.json -------------------------------------------------------------------------------- /examples/expo-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/expo-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/sst.config.ts -------------------------------------------------------------------------------- /examples/expo-app/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/expo-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/expo-app/tsconfig.json -------------------------------------------------------------------------------- /examples/flutter-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/.gitignore -------------------------------------------------------------------------------- /examples/flutter-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/flutter-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/README.md -------------------------------------------------------------------------------- /examples/flutter-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/package.json -------------------------------------------------------------------------------- /examples/flutter-app/packages/frontend/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/flutter-app/packages/frontend/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/flutter-app/packages/frontend/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /examples/flutter-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/flutter-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/sst.config.ts -------------------------------------------------------------------------------- /examples/flutter-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/flutter-app/tsconfig.json -------------------------------------------------------------------------------- /examples/gatsby-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/.gitignore -------------------------------------------------------------------------------- /examples/gatsby-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/gatsby-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/README.md -------------------------------------------------------------------------------- /examples/gatsby-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/package.json -------------------------------------------------------------------------------- /examples/gatsby-app/packages/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | -------------------------------------------------------------------------------- /examples/gatsby-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/gatsby-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/sst.config.ts -------------------------------------------------------------------------------- /examples/gatsby-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/gatsby-app/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-apollo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-apollo/.gitignore -------------------------------------------------------------------------------- /examples/graphql-apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-apollo/README.md -------------------------------------------------------------------------------- /examples/graphql-apollo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-apollo/package.json -------------------------------------------------------------------------------- /examples/graphql-apollo/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-apollo/sst.config.ts -------------------------------------------------------------------------------- /examples/graphql-apollo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-apollo/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-appsync/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-appsync/.gitignore -------------------------------------------------------------------------------- /examples/graphql-appsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-appsync/README.md -------------------------------------------------------------------------------- /examples/graphql-appsync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-appsync/package.json -------------------------------------------------------------------------------- /examples/graphql-appsync/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-appsync/sst.config.ts -------------------------------------------------------------------------------- /examples/graphql-appsync/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-appsync/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-dynamo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/.gitignore -------------------------------------------------------------------------------- /examples/graphql-dynamo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/package.json -------------------------------------------------------------------------------- /examples/graphql-dynamo/packages/web/src/pages/Article.module.css: -------------------------------------------------------------------------------- 1 | .article { 2 | padding: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /examples/graphql-dynamo/packages/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/graphql-dynamo/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/sst.config.ts -------------------------------------------------------------------------------- /examples/graphql-dynamo/stacks/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/stacks/Api.ts -------------------------------------------------------------------------------- /examples/graphql-dynamo/stacks/Web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/stacks/Web.ts -------------------------------------------------------------------------------- /examples/graphql-dynamo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-dynamo/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-rds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/.gitignore -------------------------------------------------------------------------------- /examples/graphql-rds/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/.vscode/launch.json -------------------------------------------------------------------------------- /examples/graphql-rds/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/package.json -------------------------------------------------------------------------------- /examples/graphql-rds/packages/web/src/pages/Article.module.css: -------------------------------------------------------------------------------- 1 | .article { 2 | padding: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /examples/graphql-rds/packages/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/graphql-rds/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/graphql-rds/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/sst.config.ts -------------------------------------------------------------------------------- /examples/graphql-rds/stacks/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/stacks/Api.ts -------------------------------------------------------------------------------- /examples/graphql-rds/stacks/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/stacks/Database.ts -------------------------------------------------------------------------------- /examples/graphql-rds/stacks/Web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/stacks/Web.ts -------------------------------------------------------------------------------- /examples/graphql-rds/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/graphql-rds/tsconfig.json -------------------------------------------------------------------------------- /examples/intellij-idea/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/.env -------------------------------------------------------------------------------- /examples/intellij-idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/.gitignore -------------------------------------------------------------------------------- /examples/intellij-idea/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/.idea/.gitignore -------------------------------------------------------------------------------- /examples/intellij-idea/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/.idea/modules.xml -------------------------------------------------------------------------------- /examples/intellij-idea/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/.idea/vcs.xml -------------------------------------------------------------------------------- /examples/intellij-idea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/README.md -------------------------------------------------------------------------------- /examples/intellij-idea/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/package.json -------------------------------------------------------------------------------- /examples/intellij-idea/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/sst.config.ts -------------------------------------------------------------------------------- /examples/intellij-idea/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/intellij-idea/tsconfig.json -------------------------------------------------------------------------------- /examples/kinesisstream/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/kinesisstream/.gitignore -------------------------------------------------------------------------------- /examples/kinesisstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/kinesisstream/README.md -------------------------------------------------------------------------------- /examples/kinesisstream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/kinesisstream/package.json -------------------------------------------------------------------------------- /examples/kinesisstream/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/kinesisstream/sst.config.ts -------------------------------------------------------------------------------- /examples/kinesisstream/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/kinesisstream/tsconfig.json -------------------------------------------------------------------------------- /examples/lumigo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/.gitignore -------------------------------------------------------------------------------- /examples/lumigo/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/.vscode/launch.json -------------------------------------------------------------------------------- /examples/lumigo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/.vscode/settings.json -------------------------------------------------------------------------------- /examples/lumigo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/README.md -------------------------------------------------------------------------------- /examples/lumigo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/package.json -------------------------------------------------------------------------------- /examples/lumigo/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/lumigo/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/sst.config.ts -------------------------------------------------------------------------------- /examples/lumigo/sst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/sst.json -------------------------------------------------------------------------------- /examples/lumigo/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/lumigo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/lumigo/tsconfig.json -------------------------------------------------------------------------------- /examples/middy-validator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/middy-validator/.gitignore -------------------------------------------------------------------------------- /examples/middy-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/middy-validator/README.md -------------------------------------------------------------------------------- /examples/middy-validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/middy-validator/package.json -------------------------------------------------------------------------------- /examples/middy-validator/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/middy-validator/sst.config.ts -------------------------------------------------------------------------------- /examples/middy-validator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/middy-validator/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-rds-drizzle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/nextjs-rds-drizzle/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-rds-drizzle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/nextjs-rds-drizzle/package.json -------------------------------------------------------------------------------- /examples/nextjs-rds-drizzle/packages/web/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/planetscale/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/.DS_Store -------------------------------------------------------------------------------- /examples/planetscale/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/.gitignore -------------------------------------------------------------------------------- /examples/planetscale/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/.vscode/launch.json -------------------------------------------------------------------------------- /examples/planetscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/README.md -------------------------------------------------------------------------------- /examples/planetscale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/package.json -------------------------------------------------------------------------------- /examples/planetscale/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/planetscale/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/sst.config.ts -------------------------------------------------------------------------------- /examples/planetscale/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/planetscale/tsconfig.json -------------------------------------------------------------------------------- /examples/prisma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/.gitignore -------------------------------------------------------------------------------- /examples/prisma/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/.vscode/launch.json -------------------------------------------------------------------------------- /examples/prisma/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/.vscode/settings.json -------------------------------------------------------------------------------- /examples/prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/README.md -------------------------------------------------------------------------------- /examples/prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/package.json -------------------------------------------------------------------------------- /examples/prisma/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/prisma/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/prisma/schema.prisma -------------------------------------------------------------------------------- /examples/prisma/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/sst.config.ts -------------------------------------------------------------------------------- /examples/prisma/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/prisma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/prisma/tsconfig.json -------------------------------------------------------------------------------- /examples/pub-sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/.gitignore -------------------------------------------------------------------------------- /examples/pub-sub/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/.vscode/launch.json -------------------------------------------------------------------------------- /examples/pub-sub/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/.vscode/settings.json -------------------------------------------------------------------------------- /examples/pub-sub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/README.md -------------------------------------------------------------------------------- /examples/pub-sub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/package.json -------------------------------------------------------------------------------- /examples/pub-sub/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/pub-sub/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/sst.config.ts -------------------------------------------------------------------------------- /examples/pub-sub/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/pub-sub/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/pub-sub/tsconfig.json -------------------------------------------------------------------------------- /examples/queue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/.gitignore -------------------------------------------------------------------------------- /examples/queue/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/.vscode/launch.json -------------------------------------------------------------------------------- /examples/queue/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/.vscode/settings.json -------------------------------------------------------------------------------- /examples/queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/README.md -------------------------------------------------------------------------------- /examples/queue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/package.json -------------------------------------------------------------------------------- /examples/queue/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/queue/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/sst.config.ts -------------------------------------------------------------------------------- /examples/queue/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/queue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/queue/tsconfig.json -------------------------------------------------------------------------------- /examples/quickstart-astro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-astro/.gitignore -------------------------------------------------------------------------------- /examples/quickstart-astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-astro/README.md -------------------------------------------------------------------------------- /examples/quickstart-astro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-astro/package.json -------------------------------------------------------------------------------- /examples/quickstart-astro/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-astro/src/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-astro/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-astro/sst.config.ts -------------------------------------------------------------------------------- /examples/quickstart-astro/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strictest" 3 | } -------------------------------------------------------------------------------- /examples/quickstart-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-nextjs/.gitignore -------------------------------------------------------------------------------- /examples/quickstart-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-nextjs/README.md -------------------------------------------------------------------------------- /examples/quickstart-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-nextjs/package.json -------------------------------------------------------------------------------- /examples/quickstart-nextjs/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-nextjs/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-nextjs/sst.config.ts -------------------------------------------------------------------------------- /examples/quickstart-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-nextjs/tsconfig.json -------------------------------------------------------------------------------- /examples/quickstart-remix/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/.eslintrc.js -------------------------------------------------------------------------------- /examples/quickstart-remix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/.gitignore -------------------------------------------------------------------------------- /examples/quickstart-remix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/README.md -------------------------------------------------------------------------------- /examples/quickstart-remix/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/app/root.tsx -------------------------------------------------------------------------------- /examples/quickstart-remix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/package.json -------------------------------------------------------------------------------- /examples/quickstart-remix/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/remix.env.d.ts -------------------------------------------------------------------------------- /examples/quickstart-remix/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-remix/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/sst.config.ts -------------------------------------------------------------------------------- /examples/quickstart-remix/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-remix/tsconfig.json -------------------------------------------------------------------------------- /examples/quickstart-solidstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-solidstart/README.md -------------------------------------------------------------------------------- /examples/quickstart-solidstart/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-standalone/README.md -------------------------------------------------------------------------------- /examples/quickstart-standalone/packages/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/quickstart-sveltekit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-sveltekit/.gitignore -------------------------------------------------------------------------------- /examples/quickstart-sveltekit/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /examples/quickstart-sveltekit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/quickstart-sveltekit/README.md -------------------------------------------------------------------------------- /examples/quickstart-sveltekit/src/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react-app-auth-cognito/packages/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /examples/react-app-auth-cognito/packages/frontend/src/App.css: -------------------------------------------------------------------------------- 1 | .App nav { 2 | margin-bottom: 60px; 3 | } 4 | -------------------------------------------------------------------------------- /examples/react-app-auth-cognito/packages/frontend/src/components/Home.css: -------------------------------------------------------------------------------- 1 | .Home { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /examples/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/.gitignore -------------------------------------------------------------------------------- /examples/react-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/react-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/.vscode/settings.json -------------------------------------------------------------------------------- /examples/react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/README.md -------------------------------------------------------------------------------- /examples/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/package.json -------------------------------------------------------------------------------- /examples/react-app/packages/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /examples/react-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/react-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/sst.config.ts -------------------------------------------------------------------------------- /examples/react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/react-app/tsconfig.json -------------------------------------------------------------------------------- /examples/remix-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/.gitignore -------------------------------------------------------------------------------- /examples/remix-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/remix-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/.vscode/settings.json -------------------------------------------------------------------------------- /examples/remix-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/README.md -------------------------------------------------------------------------------- /examples/remix-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/package.json -------------------------------------------------------------------------------- /examples/remix-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/remix-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/sst.config.ts -------------------------------------------------------------------------------- /examples/remix-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/remix-app/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-csharp/Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/Api.csproj -------------------------------------------------------------------------------- /examples/rest-api-csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/README.md -------------------------------------------------------------------------------- /examples/rest-api-csharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/package.json -------------------------------------------------------------------------------- /examples/rest-api-csharp/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-csharp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-csharp/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-dynamodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-dynamodb/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-dynamodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-dynamodb/README.md -------------------------------------------------------------------------------- /examples/rest-api-dynamodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-dynamodb/package.json -------------------------------------------------------------------------------- /examples/rest-api-dynamodb/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-dynamodb/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-dynamodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-dynamodb/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-go/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/.vscode/launch.json -------------------------------------------------------------------------------- /examples/rest-api-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/README.md -------------------------------------------------------------------------------- /examples/rest-api-go/db/notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/db/notes.go -------------------------------------------------------------------------------- /examples/rest-api-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/go.mod -------------------------------------------------------------------------------- /examples/rest-api-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/go.sum -------------------------------------------------------------------------------- /examples/rest-api-go/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/package.json -------------------------------------------------------------------------------- /examples/rest-api-go/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-go/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-go/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-mongodb/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-mongodb/README.md -------------------------------------------------------------------------------- /examples/rest-api-mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-mongodb/package.json -------------------------------------------------------------------------------- /examples/rest-api-mongodb/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-mongodb/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-mongodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-mongodb/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-postgresql/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-postgresql/README.md -------------------------------------------------------------------------------- /examples/rest-api-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-python/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/Pipfile -------------------------------------------------------------------------------- /examples/rest-api-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/README.md -------------------------------------------------------------------------------- /examples/rest-api-python/functions/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rest-api-python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/package.json -------------------------------------------------------------------------------- /examples/rest-api-python/services/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /examples/rest-api-python/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-python/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-python/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api-rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/.gitignore -------------------------------------------------------------------------------- /examples/rest-api-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/Cargo.toml -------------------------------------------------------------------------------- /examples/rest-api-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/README.md -------------------------------------------------------------------------------- /examples/rest-api-rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/package.json -------------------------------------------------------------------------------- /examples/rest-api-rust/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api-rust/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api-rust/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/.gitignore -------------------------------------------------------------------------------- /examples/rest-api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/.vscode/launch.json -------------------------------------------------------------------------------- /examples/rest-api/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/.vscode/settings.json -------------------------------------------------------------------------------- /examples/rest-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/README.md -------------------------------------------------------------------------------- /examples/rest-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/package.json -------------------------------------------------------------------------------- /examples/rest-api/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/rest-api/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-api/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/rest-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-api/tsconfig.json -------------------------------------------------------------------------------- /examples/rest-services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/.gitignore -------------------------------------------------------------------------------- /examples/rest-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/README.md -------------------------------------------------------------------------------- /examples/rest-services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/package.json -------------------------------------------------------------------------------- /examples/rest-services/services/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/services/notes.ts -------------------------------------------------------------------------------- /examples/rest-services/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/sst.config.ts -------------------------------------------------------------------------------- /examples/rest-services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/rest-services/tsconfig.json -------------------------------------------------------------------------------- /examples/sentry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/.gitignore -------------------------------------------------------------------------------- /examples/sentry/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/.vscode/launch.json -------------------------------------------------------------------------------- /examples/sentry/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/.vscode/settings.json -------------------------------------------------------------------------------- /examples/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/README.md -------------------------------------------------------------------------------- /examples/sentry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/package.json -------------------------------------------------------------------------------- /examples/sentry/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/sentry/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/sst.config.ts -------------------------------------------------------------------------------- /examples/sentry/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/sentry/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/sentry/tsconfig.json -------------------------------------------------------------------------------- /examples/stack-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/.gitignore -------------------------------------------------------------------------------- /examples/stack-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/.vscode/launch.json -------------------------------------------------------------------------------- /examples/stack-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/package.json -------------------------------------------------------------------------------- /examples/stack-tests/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/stack-tests/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/sst.config.ts -------------------------------------------------------------------------------- /examples/stack-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/stack-tests/tsconfig.json -------------------------------------------------------------------------------- /examples/standard-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-api/.gitignore -------------------------------------------------------------------------------- /examples/standard-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-api/package.json -------------------------------------------------------------------------------- /examples/standard-api/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-api/sst.config.ts -------------------------------------------------------------------------------- /examples/standard-api/stacks/MyStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-api/stacks/MyStack.ts -------------------------------------------------------------------------------- /examples/standard-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-api/tsconfig.json -------------------------------------------------------------------------------- /examples/standard-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-nextjs/.gitignore -------------------------------------------------------------------------------- /examples/standard-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-nextjs/package.json -------------------------------------------------------------------------------- /examples/standard-nextjs/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-nextjs/sst.config.ts -------------------------------------------------------------------------------- /examples/standard-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/standard-nextjs/tsconfig.json -------------------------------------------------------------------------------- /examples/svelte-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/.gitignore -------------------------------------------------------------------------------- /examples/svelte-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/svelte-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/README.md -------------------------------------------------------------------------------- /examples/svelte-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/package.json -------------------------------------------------------------------------------- /examples/svelte-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/svelte-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/sst.config.ts -------------------------------------------------------------------------------- /examples/svelte-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/svelte-app/tsconfig.json -------------------------------------------------------------------------------- /examples/vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/.gitignore -------------------------------------------------------------------------------- /examples/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /examples/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/.vscode/settings.json -------------------------------------------------------------------------------- /examples/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/README.md -------------------------------------------------------------------------------- /examples/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/package.json -------------------------------------------------------------------------------- /examples/vscode/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/vscode/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/sst.config.ts -------------------------------------------------------------------------------- /examples/vscode/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vscode/tsconfig.json -------------------------------------------------------------------------------- /examples/vue-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/.gitignore -------------------------------------------------------------------------------- /examples/vue-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/.vscode/launch.json -------------------------------------------------------------------------------- /examples/vue-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/.vscode/settings.json -------------------------------------------------------------------------------- /examples/vue-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/README.md -------------------------------------------------------------------------------- /examples/vue-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/package.json -------------------------------------------------------------------------------- /examples/vue-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/vue-app/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/sst.config.ts -------------------------------------------------------------------------------- /examples/vue-app/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/vue-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/vue-app/tsconfig.json -------------------------------------------------------------------------------- /examples/websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/.gitignore -------------------------------------------------------------------------------- /examples/websocket/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/.vscode/launch.json -------------------------------------------------------------------------------- /examples/websocket/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/.vscode/settings.json -------------------------------------------------------------------------------- /examples/websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/README.md -------------------------------------------------------------------------------- /examples/websocket/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/package.json -------------------------------------------------------------------------------- /examples/websocket/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/websocket/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/sst.config.ts -------------------------------------------------------------------------------- /examples/websocket/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/websocket/tsconfig.json -------------------------------------------------------------------------------- /examples/webstorm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.gitignore -------------------------------------------------------------------------------- /examples/webstorm/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.idea/.gitignore -------------------------------------------------------------------------------- /examples/webstorm/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.idea/modules.xml -------------------------------------------------------------------------------- /examples/webstorm/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.idea/vcs.xml -------------------------------------------------------------------------------- /examples/webstorm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.vscode/launch.json -------------------------------------------------------------------------------- /examples/webstorm/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/.vscode/settings.json -------------------------------------------------------------------------------- /examples/webstorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/README.md -------------------------------------------------------------------------------- /examples/webstorm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/package.json -------------------------------------------------------------------------------- /examples/webstorm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/webstorm/sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/sst.config.ts -------------------------------------------------------------------------------- /examples/webstorm/stacks/ExampleStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/stacks/ExampleStack.ts -------------------------------------------------------------------------------- /examples/webstorm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/examples/webstorm/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/package.json -------------------------------------------------------------------------------- /packages/console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/.gitignore -------------------------------------------------------------------------------- /packages/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/CHANGELOG.md -------------------------------------------------------------------------------- /packages/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/README.md -------------------------------------------------------------------------------- /packages/console/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/index.html -------------------------------------------------------------------------------- /packages/console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/package.json -------------------------------------------------------------------------------- /packages/console/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/public/_redirects -------------------------------------------------------------------------------- /packages/console/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/public/favicon.svg -------------------------------------------------------------------------------- /packages/console/public/graphql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/public/graphql.html -------------------------------------------------------------------------------- /packages/console/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/public/logo.svg -------------------------------------------------------------------------------- /packages/console/public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/public/og.png -------------------------------------------------------------------------------- /packages/console/src/App/Stage/Buckets/dnd.css: -------------------------------------------------------------------------------- 1 | .file-drop { 2 | width: 100%; 3 | min-height: 80vh; 4 | } 5 | -------------------------------------------------------------------------------- /packages/console/src/App/Stage/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/App/Stage/Panel.tsx -------------------------------------------------------------------------------- /packages/console/src/App/Stage/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/App/Stage/hooks.ts -------------------------------------------------------------------------------- /packages/console/src/App/Stage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/App/Stage/index.tsx -------------------------------------------------------------------------------- /packages/console/src/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/App/index.tsx -------------------------------------------------------------------------------- /packages/console/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/components/Logo.tsx -------------------------------------------------------------------------------- /packages/console/src/components/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/components/Row.tsx -------------------------------------------------------------------------------- /packages/console/src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/components/Tabs.tsx -------------------------------------------------------------------------------- /packages/console/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/components/index.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/api.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/console/src/data/aws/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/client.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/cognito.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/cognito.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/index.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/rds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/rds.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/s3.ts -------------------------------------------------------------------------------- /packages/console/src/data/aws/stacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/aws/stacks.ts -------------------------------------------------------------------------------- /packages/console/src/data/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/global.ts -------------------------------------------------------------------------------- /packages/console/src/data/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/data/trpc.ts -------------------------------------------------------------------------------- /packages/console/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/favicon.svg -------------------------------------------------------------------------------- /packages/console/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/main.tsx -------------------------------------------------------------------------------- /packages/console/src/stitches.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/src/stitches.config.ts -------------------------------------------------------------------------------- /packages/console/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/console/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/tsconfig.json -------------------------------------------------------------------------------- /packages/console/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/console/vite.config.ts -------------------------------------------------------------------------------- /packages/create-sst/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-sst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/README.md -------------------------------------------------------------------------------- /packages/create-sst/bin/create-sst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/bin/create-sst.mjs -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/dropin/astro/templates/src/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/dropin/nextjs/templates/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/dropin/remix/templates/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/dropin/solid/templates/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/create-sst-dynamo: -------------------------------------------------------------------------------- 1 | ../graphql/dynamo -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/create-sst-rds: -------------------------------------------------------------------------------- 1 | ../graphql/rds -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/graphql-dynamo: -------------------------------------------------------------------------------- 1 | ../graphql/dynamo -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/graphql-rds: -------------------------------------------------------------------------------- 1 | ../graphql/rds -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/quickstart-astro/templates/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/react-app/templates/packages/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/rest-api-python/templates/services/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/standard-api: -------------------------------------------------------------------------------- 1 | ../standard/api -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/examples/standard-nextjs: -------------------------------------------------------------------------------- 1 | ../standard/nextjs -------------------------------------------------------------------------------- /packages/create-sst/bin/presets/other/python/templates/functions/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/create-sst/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/package.json -------------------------------------------------------------------------------- /packages/create-sst/src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/src/index.mjs -------------------------------------------------------------------------------- /packages/create-sst/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/create-sst/tsconfig.json -------------------------------------------------------------------------------- /packages/solid-start-sst/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/CHANGELOG.md -------------------------------------------------------------------------------- /packages/solid-start-sst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/README.md -------------------------------------------------------------------------------- /packages/solid-start-sst/entry-edge.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/entry-edge.mjs -------------------------------------------------------------------------------- /packages/solid-start-sst/entry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/entry.mjs -------------------------------------------------------------------------------- /packages/solid-start-sst/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/index.d.ts -------------------------------------------------------------------------------- /packages/solid-start-sst/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/index.mjs -------------------------------------------------------------------------------- /packages/solid-start-sst/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/solid-start-sst/package.json -------------------------------------------------------------------------------- /packages/sst/.gitignore: -------------------------------------------------------------------------------- 1 | .sst 2 | -------------------------------------------------------------------------------- /packages/sst/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/README.md -------------------------------------------------------------------------------- /packages/sst/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/build.mjs -------------------------------------------------------------------------------- /packages/sst/dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/dist/package.json -------------------------------------------------------------------------------- /packages/sst/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/package.json -------------------------------------------------------------------------------- /packages/sst/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/bootstrap.ts -------------------------------------------------------------------------------- /packages/sst/src/bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/bus.ts -------------------------------------------------------------------------------- /packages/sst/src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cache.ts -------------------------------------------------------------------------------- /packages/sst/src/cdk/deploy-stack.ts.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cdk/deploy-stack.ts.bk -------------------------------------------------------------------------------- /packages/sst/src/cdk/deployments.ts.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cdk/deployments.ts.bk -------------------------------------------------------------------------------- /packages/sst/src/cdk/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cdk/util.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/ci-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/ci-info.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/colors.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/bind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/bind.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/build.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/console.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/deploy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/deploy.tsx -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/dev.tsx -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/diff.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/remove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/remove.tsx -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/types.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/update.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/commands/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/commands/version.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/local/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/local/router.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/local/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/local/server.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/program.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/spinner.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/sst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/sst.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/terminal.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/ui/deploy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/ui/deploy.tsx -------------------------------------------------------------------------------- /packages/sst/src/cli/ui/functions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/ui/functions.tsx -------------------------------------------------------------------------------- /packages/sst/src/cli/ui/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/ui/header.ts -------------------------------------------------------------------------------- /packages/sst/src/cli/ui/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/cli/ui/stack.ts -------------------------------------------------------------------------------- /packages/sst/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/config.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Api.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/App.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/AstroSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/AstroSite.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Auth.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/BaseSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/BaseSite.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Bucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Bucket.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Cognito.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Cognito.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Config.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Construct.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Cron.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/EventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/EventBus.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Function.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Job.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Metadata.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Parameter.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Queue.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/RDS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/RDS.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/RemixSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/RemixSite.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Script.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Secret.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Service.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/SsrSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/SsrSite.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Stack.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Table.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/Topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/Topic.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/context.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/deprecated/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./NextjsSite.js"; 2 | -------------------------------------------------------------------------------- /packages/sst/src/constructs/descs.d.ts: -------------------------------------------------------------------------------- 1 | declare module "zip-local"; 2 | -------------------------------------------------------------------------------- /packages/sst/src/constructs/future/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Auth.js"; 2 | -------------------------------------------------------------------------------- /packages/sst/src/constructs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/index.ts -------------------------------------------------------------------------------- /packages/sst/src/constructs/util/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/constructs/util/size.ts -------------------------------------------------------------------------------- /packages/sst/src/context/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/context/context.ts -------------------------------------------------------------------------------- /packages/sst/src/context/context2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/context/context2.ts -------------------------------------------------------------------------------- /packages/sst/src/context/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/context/handler.ts -------------------------------------------------------------------------------- /packages/sst/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/context/index.ts -------------------------------------------------------------------------------- /packages/sst/src/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/credentials.ts -------------------------------------------------------------------------------- /packages/sst/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/error.ts -------------------------------------------------------------------------------- /packages/sst/src/index.ts: -------------------------------------------------------------------------------- 1 | export type { SSTConfig } from "./project.js"; 2 | -------------------------------------------------------------------------------- /packages/sst/src/iot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/iot.ts -------------------------------------------------------------------------------- /packages/sst/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/logger.ts -------------------------------------------------------------------------------- /packages/sst/src/node/actor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/actor/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/api/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/auth/auth.ts -------------------------------------------------------------------------------- /packages/sst/src/node/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/auth/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/auth/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/auth/session.ts -------------------------------------------------------------------------------- /packages/sst/src/node/bucket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/bucket/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/config/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/event-bus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/event-bus/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/function/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/function/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/graphql/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/job/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/job/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/queue/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/rds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/rds/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/service/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/site/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/site/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/table/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/topic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/topic/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/util/index.ts -------------------------------------------------------------------------------- /packages/sst/src/node/util/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/node/util/loader.ts -------------------------------------------------------------------------------- /packages/sst/src/pothos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/pothos.ts -------------------------------------------------------------------------------- /packages/sst/src/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/project.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/handlers.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/handlers/go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/handlers/go.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/iot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/iot.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/runtime.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/server.ts -------------------------------------------------------------------------------- /packages/sst/src/runtime/workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/runtime/workers.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/app-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/app-metadata.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/assembly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/assembly.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/build.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/deploy.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/diff.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/index.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/metadata.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/monitor.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/remove.ts -------------------------------------------------------------------------------- /packages/sst/src/stacks/synth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/stacks/synth.ts -------------------------------------------------------------------------------- /packages/sst/src/util/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/error.ts -------------------------------------------------------------------------------- /packages/sst/src/util/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/fs.ts -------------------------------------------------------------------------------- /packages/sst/src/util/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/lazy.ts -------------------------------------------------------------------------------- /packages/sst/src/util/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/module.ts -------------------------------------------------------------------------------- /packages/sst/src/util/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/process.ts -------------------------------------------------------------------------------- /packages/sst/src/util/semaphore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/semaphore.ts -------------------------------------------------------------------------------- /packages/sst/src/util/wsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/util/wsl.ts -------------------------------------------------------------------------------- /packages/sst/src/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/src/watcher.ts -------------------------------------------------------------------------------- /packages/sst/support/bridge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/support/bridge/Dockerfile -------------------------------------------------------------------------------- /packages/sst/support/dotnet31-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | # Build results 2 | [Bb]in/ 3 | [Oo]bj/ 4 | -------------------------------------------------------------------------------- /packages/sst/support/dotnet6-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | # Build results 2 | [Bb]in/ 3 | [Oo]bj/ 4 | -------------------------------------------------------------------------------- /packages/sst/support/dotnet8-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | # Build results 2 | [Bb]in/ 3 | [Oo]bj/ 4 | -------------------------------------------------------------------------------- /packages/sst/support/nixpacks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/support/nixpacks/Dockerfile -------------------------------------------------------------------------------- /packages/sst/support/service-dev-function/index.js: -------------------------------------------------------------------------------- 1 | export async function handler() {} 2 | -------------------------------------------------------------------------------- /packages/sst/support/ssr-warmer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/support/ssr-warmer/index.ts -------------------------------------------------------------------------------- /packages/sst/support/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/support/tsconfig.json -------------------------------------------------------------------------------- /packages/sst/test/constructs/Api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/constructs/Api.test.ts -------------------------------------------------------------------------------- /packages/sst/test/constructs/App.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/constructs/App.test.ts -------------------------------------------------------------------------------- /packages/sst/test/constructs/Job.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/constructs/Job.test.ts -------------------------------------------------------------------------------- /packages/sst/test/constructs/RDS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/constructs/RDS.test.ts -------------------------------------------------------------------------------- /packages/sst/test/constructs/appsync/schema.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | hello: String 3 | } 4 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/appsync/schema2.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | world: String 3 | } 4 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/constructs/helper.ts -------------------------------------------------------------------------------- /packages/sst/test/constructs/lambda.js: -------------------------------------------------------------------------------- 1 | export async function handler() { 2 | return "Hello World"; 3 | } 4 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/lambda/fn.ts: -------------------------------------------------------------------------------- 1 | export async function handler() {} 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/migrations/base.js: -------------------------------------------------------------------------------- 1 | // placeholder 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/nextjs-site/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/remix-site/public/foo/bar/baz: -------------------------------------------------------------------------------- 1 | bob -------------------------------------------------------------------------------- /packages/sst/test/constructs/service-custom-Dockerfile/child/Dockerfile.prod: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY index.html . -------------------------------------------------------------------------------- /packages/sst/test/constructs/service-custom-Dockerfile/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/service/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY index.html . -------------------------------------------------------------------------------- /packages/sst/test/constructs/service/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/site/build-with-30b-data/24byte.html: -------------------------------------------------------------------------------- 1 | {{ REACT_APP_API_URL }} 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/site/build-with-30b-data/6byte.html: -------------------------------------------------------------------------------- 1 | Error 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/site/build/index.html: -------------------------------------------------------------------------------- 1 | my-url {{ REACT_APP_REFERENCE_ENV }} 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/site/error.html: -------------------------------------------------------------------------------- 1 | Error 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/site/index.html: -------------------------------------------------------------------------------- 1 | Hi 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/vite-static-site/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/vite-static-site/error.html: -------------------------------------------------------------------------------- 1 | Error 2 | -------------------------------------------------------------------------------- /packages/sst/test/constructs/vite-static-site/index.html: -------------------------------------------------------------------------------- 1 | Hi 2 | -------------------------------------------------------------------------------- /packages/sst/test/node/context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/node/context.test.ts -------------------------------------------------------------------------------- /packages/sst/test/project.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/test/project.test.ts -------------------------------------------------------------------------------- /packages/sst/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/tsconfig.json -------------------------------------------------------------------------------- /packages/sst/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/sst/vitest.config.ts -------------------------------------------------------------------------------- /packages/svelte-kit-sst/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/svelte-kit-sst/CHANGELOG.md -------------------------------------------------------------------------------- /packages/svelte-kit-sst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/svelte-kit-sst/README.md -------------------------------------------------------------------------------- /packages/svelte-kit-sst/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/svelte-kit-sst/package.json -------------------------------------------------------------------------------- /packages/svelte-kit-sst/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/svelte-kit-sst/src/index.ts -------------------------------------------------------------------------------- /packages/svelte-kit-sst/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/packages/svelte-kit-sst/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /seed.yml: -------------------------------------------------------------------------------- 1 | before_compile: 2 | - n 14.17.0 3 | -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/turbo.json -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/.gitignore -------------------------------------------------------------------------------- /www/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/CHANGELOG.md -------------------------------------------------------------------------------- /www/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/babel.config.js -------------------------------------------------------------------------------- /www/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/config.js -------------------------------------------------------------------------------- /www/docs/about.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/about.module.css -------------------------------------------------------------------------------- /www/docs/advanced/bootstrapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/bootstrapping.md -------------------------------------------------------------------------------- /www/docs/advanced/console-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/console-updates.md -------------------------------------------------------------------------------- /www/docs/advanced/extending-sst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/extending-sst.md -------------------------------------------------------------------------------- /www/docs/advanced/iam-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/iam-credentials.md -------------------------------------------------------------------------------- /www/docs/advanced/importing-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/importing-resources.md -------------------------------------------------------------------------------- /www/docs/advanced/lambda-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/lambda-layers.md -------------------------------------------------------------------------------- /www/docs/advanced/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/monitoring.md -------------------------------------------------------------------------------- /www/docs/advanced/permission-boundary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/permission-boundary.md -------------------------------------------------------------------------------- /www/docs/advanced/removal-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/removal-policy.md -------------------------------------------------------------------------------- /www/docs/advanced/source-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/source-maps.md -------------------------------------------------------------------------------- /www/docs/advanced/tagging-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/advanced/tagging-resources.md -------------------------------------------------------------------------------- /www/docs/anonymous-telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/anonymous-telemetry.md -------------------------------------------------------------------------------- /www/docs/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/apis.md -------------------------------------------------------------------------------- /www/docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/auth.md -------------------------------------------------------------------------------- /www/docs/clients/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/api.md -------------------------------------------------------------------------------- /www/docs/clients/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/auth.md -------------------------------------------------------------------------------- /www/docs/clients/bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/bucket.md -------------------------------------------------------------------------------- /www/docs/clients/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/config.md -------------------------------------------------------------------------------- /www/docs/clients/event-bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/event-bus.md -------------------------------------------------------------------------------- /www/docs/clients/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/function.md -------------------------------------------------------------------------------- /www/docs/clients/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/graphql.md -------------------------------------------------------------------------------- /www/docs/clients/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/index.md -------------------------------------------------------------------------------- /www/docs/clients/job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/job.md -------------------------------------------------------------------------------- /www/docs/clients/kinesis-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/kinesis-stream.md -------------------------------------------------------------------------------- /www/docs/clients/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/queue.md -------------------------------------------------------------------------------- /www/docs/clients/rds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/rds.md -------------------------------------------------------------------------------- /www/docs/clients/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/service.md -------------------------------------------------------------------------------- /www/docs/clients/site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/site.md -------------------------------------------------------------------------------- /www/docs/clients/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/table.md -------------------------------------------------------------------------------- /www/docs/clients/topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/clients/topic.md -------------------------------------------------------------------------------- /www/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/config.md -------------------------------------------------------------------------------- /www/docs/configuring-sst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/configuring-sst.md -------------------------------------------------------------------------------- /www/docs/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/console.md -------------------------------------------------------------------------------- /www/docs/constructs/Api.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Api.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Api.md -------------------------------------------------------------------------------- /www/docs/constructs/ApiGatewayV1Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/ApiGatewayV1Api.md -------------------------------------------------------------------------------- /www/docs/constructs/App.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/App.about.md -------------------------------------------------------------------------------- /www/docs/constructs/App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/App.md -------------------------------------------------------------------------------- /www/docs/constructs/AppSyncApi.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/AppSyncApi.about.md -------------------------------------------------------------------------------- /www/docs/constructs/AppSyncApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/AppSyncApi.md -------------------------------------------------------------------------------- /www/docs/constructs/AstroSite.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/AstroSite.about.md -------------------------------------------------------------------------------- /www/docs/constructs/AstroSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/AstroSite.md -------------------------------------------------------------------------------- /www/docs/constructs/Auth.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Auth.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Auth.md -------------------------------------------------------------------------------- /www/docs/constructs/Bucket.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Bucket.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Bucket.md -------------------------------------------------------------------------------- /www/docs/constructs/Cognito.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Cognito.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Cognito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Cognito.md -------------------------------------------------------------------------------- /www/docs/constructs/Cron.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Cron.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Cron.md -------------------------------------------------------------------------------- /www/docs/constructs/Duration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Duration.md -------------------------------------------------------------------------------- /www/docs/constructs/EventBus.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/EventBus.about.md -------------------------------------------------------------------------------- /www/docs/constructs/EventBus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/EventBus.md -------------------------------------------------------------------------------- /www/docs/constructs/Function.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Function.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Function.md -------------------------------------------------------------------------------- /www/docs/constructs/Job.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Job.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Job.md -------------------------------------------------------------------------------- /www/docs/constructs/KinesisStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/KinesisStream.md -------------------------------------------------------------------------------- /www/docs/constructs/NextjsSite.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/NextjsSite.about.md -------------------------------------------------------------------------------- /www/docs/constructs/NextjsSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/NextjsSite.md -------------------------------------------------------------------------------- /www/docs/constructs/Parameter.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Parameter.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Parameter.md -------------------------------------------------------------------------------- /www/docs/constructs/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Permissions.md -------------------------------------------------------------------------------- /www/docs/constructs/Queue.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Queue.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Queue.md -------------------------------------------------------------------------------- /www/docs/constructs/RDS.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/RDS.about.md -------------------------------------------------------------------------------- /www/docs/constructs/RDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/RDS.md -------------------------------------------------------------------------------- /www/docs/constructs/RemixSite.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/RemixSite.about.md -------------------------------------------------------------------------------- /www/docs/constructs/RemixSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/RemixSite.md -------------------------------------------------------------------------------- /www/docs/constructs/Script.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Script.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Script.md -------------------------------------------------------------------------------- /www/docs/constructs/Secret.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Secret.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Secret.md -------------------------------------------------------------------------------- /www/docs/constructs/Service.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Service.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Service.md -------------------------------------------------------------------------------- /www/docs/constructs/Size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Size.md -------------------------------------------------------------------------------- /www/docs/constructs/SolidStartSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/SolidStartSite.md -------------------------------------------------------------------------------- /www/docs/constructs/Stack.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Stack.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Stack.md -------------------------------------------------------------------------------- /www/docs/constructs/StaticSite.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/StaticSite.about.md -------------------------------------------------------------------------------- /www/docs/constructs/StaticSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/StaticSite.md -------------------------------------------------------------------------------- /www/docs/constructs/SvelteKitSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/SvelteKitSite.md -------------------------------------------------------------------------------- /www/docs/constructs/Table.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Table.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Table.md -------------------------------------------------------------------------------- /www/docs/constructs/Topic.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Topic.about.md -------------------------------------------------------------------------------- /www/docs/constructs/Topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/Topic.md -------------------------------------------------------------------------------- /www/docs/constructs/WebSocketApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/WebSocketApi.md -------------------------------------------------------------------------------- /www/docs/constructs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/index.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Api.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/App.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/AppSyncApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/AppSyncApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Auth.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Bucket.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Cron.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/DebugApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/DebugApp.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/DebugStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/DebugStack.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/EventBus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/EventBus.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Function.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/GraphQLApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/GraphQLApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/KinesisStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/KinesisStream.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/NextjsSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/NextjsSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Permissions.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Queue.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/RDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/RDS.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Script.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Stack.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/StaticSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/StaticSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Table.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/Topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/Topic.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/ViteStaticSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/ViteStaticSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/WebSocketApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/WebSocketApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/index.md -------------------------------------------------------------------------------- /www/docs/constructs/v0/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v0/migration.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Api.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Api.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Api.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Api.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Api.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/App.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/App.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/App.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/App.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/App.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/AppSyncApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/AppSyncApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Auth.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Auth.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Auth.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Auth.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Auth.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Bucket.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Bucket.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Bucket.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Bucket.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Bucket.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cognito.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cognito.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cognito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cognito.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cognito.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cognito.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cron.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cron.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cron.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Cron.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Cron.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/DebugApp.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/DebugApp.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/DebugApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/DebugApp.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/DebugStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/DebugStack.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Duration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Duration.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/EventBus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/EventBus.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Function.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/GraphQLApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/GraphQLApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Job.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Job.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Job.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Job.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Job.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/NextjsSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/NextjsSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Parameter.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Permissions.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Queue.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Queue.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Queue.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Queue.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Queue.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/RDS.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/RDS.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/RDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/RDS.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/RDS.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/RDS.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/RemixSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/RemixSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Script.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Script.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Script.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Script.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Script.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Secret.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Secret.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Secret.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Secret.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Secret.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Size.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Stack.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Stack.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Stack.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Stack.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Stack.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/StaticSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/StaticSite.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Table.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Table.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Table.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Table.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Table.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Topic.about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Topic.about.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Topic.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/Topic.tsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/Topic.tsdoc.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/WebSocketApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/WebSocketApi.md -------------------------------------------------------------------------------- /www/docs/constructs/v1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/constructs/v1/index.md -------------------------------------------------------------------------------- /www/docs/containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/containers.md -------------------------------------------------------------------------------- /www/docs/cron-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/cron-jobs.md -------------------------------------------------------------------------------- /www/docs/custom-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/custom-domains.md -------------------------------------------------------------------------------- /www/docs/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/databases.md -------------------------------------------------------------------------------- /www/docs/design-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/design-principles.md -------------------------------------------------------------------------------- /www/docs/editor-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/editor-integration.md -------------------------------------------------------------------------------- /www/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/events.md -------------------------------------------------------------------------------- /www/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/faq.md -------------------------------------------------------------------------------- /www/docs/file-uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/file-uploads.md -------------------------------------------------------------------------------- /www/docs/going-to-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/going-to-production.md -------------------------------------------------------------------------------- /www/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/index.md -------------------------------------------------------------------------------- /www/docs/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/known-issues.md -------------------------------------------------------------------------------- /www/docs/learn/add-api-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/add-api-types.md -------------------------------------------------------------------------------- /www/docs/learn/breakpoint-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/breakpoint-debugging.md -------------------------------------------------------------------------------- /www/docs/learn/create-a-new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/create-a-new-project.md -------------------------------------------------------------------------------- /www/docs/learn/database-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/database-options.md -------------------------------------------------------------------------------- /www/docs/learn/deploy-to-prod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/deploy-to-prod.md -------------------------------------------------------------------------------- /www/docs/learn/domain-driven-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/domain-driven-design.md -------------------------------------------------------------------------------- /www/docs/learn/git-push-to-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/git-push-to-deploy.md -------------------------------------------------------------------------------- /www/docs/learn/graphql-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/graphql-api.md -------------------------------------------------------------------------------- /www/docs/learn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/index.md -------------------------------------------------------------------------------- /www/docs/learn/make-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/make-updates.md -------------------------------------------------------------------------------- /www/docs/learn/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/project-structure.md -------------------------------------------------------------------------------- /www/docs/learn/render-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/render-queries.md -------------------------------------------------------------------------------- /www/docs/learn/start-the-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/start-the-frontend.md -------------------------------------------------------------------------------- /www/docs/learn/write-to-dynamodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/learn/write-to-dynamodb.md -------------------------------------------------------------------------------- /www/docs/live-lambda-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/live-lambda-development.md -------------------------------------------------------------------------------- /www/docs/long-running-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/long-running-jobs.md -------------------------------------------------------------------------------- /www/docs/migrating/cdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/migrating/cdk.md -------------------------------------------------------------------------------- /www/docs/migrating/vercel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/migrating/vercel.md -------------------------------------------------------------------------------- /www/docs/packages/create-sst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/packages/create-sst.md -------------------------------------------------------------------------------- /www/docs/packages/sst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/packages/sst.md -------------------------------------------------------------------------------- /www/docs/queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/queues.md -------------------------------------------------------------------------------- /www/docs/resource-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/resource-binding.md -------------------------------------------------------------------------------- /www/docs/setting-up-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/setting-up-aws.md -------------------------------------------------------------------------------- /www/docs/start/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/astro.md -------------------------------------------------------------------------------- /www/docs/start/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/nextjs.md -------------------------------------------------------------------------------- /www/docs/start/remix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/remix.md -------------------------------------------------------------------------------- /www/docs/start/solid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/solid.md -------------------------------------------------------------------------------- /www/docs/start/standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/standalone.md -------------------------------------------------------------------------------- /www/docs/start/svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/start/svelte.md -------------------------------------------------------------------------------- /www/docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/testing.md -------------------------------------------------------------------------------- /www/docs/upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/upgrade-guide.md -------------------------------------------------------------------------------- /www/docs/video.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/video.module.css -------------------------------------------------------------------------------- /www/docs/what-is-sst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/what-is-sst.md -------------------------------------------------------------------------------- /www/docs/working-with-your-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docs/working-with-your-team.md -------------------------------------------------------------------------------- /www/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/docusaurus.config.js -------------------------------------------------------------------------------- /www/drafts/_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/drafts/_storage.md -------------------------------------------------------------------------------- /www/generate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/generate.mjs -------------------------------------------------------------------------------- /www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/package.json -------------------------------------------------------------------------------- /www/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/sidebars.js -------------------------------------------------------------------------------- /www/src/components/ChangeText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/components/ChangeText.js -------------------------------------------------------------------------------- /www/src/components/HeadlineText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/components/HeadlineText.js -------------------------------------------------------------------------------- /www/src/components/MultiApiCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/components/MultiApiCode.js -------------------------------------------------------------------------------- /www/src/components/MultiSiteCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/components/MultiSiteCode.js -------------------------------------------------------------------------------- /www/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/css/custom.css -------------------------------------------------------------------------------- /www/src/theme/DocItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/src/theme/DocItem/index.js -------------------------------------------------------------------------------- /www/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/static/img/components/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/components/keyboard.svg -------------------------------------------------------------------------------- /www/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/favicon.ico -------------------------------------------------------------------------------- /www/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logo.svg -------------------------------------------------------------------------------- /www/static/img/logos/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logos/astro.svg -------------------------------------------------------------------------------- /www/static/img/logos/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logos/nextjs.svg -------------------------------------------------------------------------------- /www/static/img/logos/remix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logos/remix.svg -------------------------------------------------------------------------------- /www/static/img/logos/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logos/solid.svg -------------------------------------------------------------------------------- /www/static/img/logos/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/logos/svelte.svg -------------------------------------------------------------------------------- /www/static/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/og-image.png -------------------------------------------------------------------------------- /www/static/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sst/v2/HEAD/www/static/img/star.svg --------------------------------------------------------------------------------