The SST Guide is a comprehensive open source tutorial for building and deploying full-stack apps using serverless and React on AWS.
We create a note taking app from scratch — demo.sst.dev
We use React.js, AWS Lambda, API Gateway, DynamoDB, and Cognito. This repo is a full-stack serverless app built with SST.
- The
infra/directory defines our AWS infrastructure. - The
packages/functionsdirectory contains the Lambda functions that power the CRUD API. - The
packages/frontenddirectory contains the React app.
It's a single-page React app powered by a serverless CRUD API. We also cover how add user authentication, handle file uploads, and process credit card payments with Stripe.
Prerequisites
Before you get started:
Usage
Clone this repo.
git clone https://github.com/sst/notes.git
Install dependencies.
This project uses a secret that we are not checking in to the repo. Make sure to create one before deploying.
sst secret set StripeSecretKey <YOUR_STRIPE_SECRET_TEST_KEY>
Developing Locally
From your project root run:
This will start your frontend and run your functions Live.
Deploying to Prod
Run this in the project root to deploy it to prod.
npx sst deploy --stage production
Make sure to set your secret for prod as well.
sst secret set StripeSecretKey <YOUR_STRIPE_SECRET_TEST_KEY> --stage production
Join the SST community over on Discord and follow us on Twitter.
