-
Notifications
You must be signed in to change notification settings - Fork 2
01 Setup SST
JP Barbosa edited this page Sep 24, 2022
·
11 revisions
npx create-sst@latest --template=minimal/typescript-starter sst-rekognition
cd sst-rekognition
npm install
npm install uuid
npm install --save-dev @types/uuid
-
frontend
(React app)public
src
-
services
-
functions
(Lambda functions)
-
-
stacks
(SST stack)resources
MyStack.ts
index.ts
types
code .
code ./.prettierrc.json
{
"singleQuote": false
}
code ./sst.json
{
"name": "sst-rekognition",
"region": "us-east-1",
"main": "stacks/index.ts"
}
git init
git add .
git commit -m "Setup Serverless Stack (SST)"