Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 515 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 515 Bytes

LocalStart (WIP)

A modern Typescript framework with a first class AWS integration powered by LocalStack.

Prerequisites

  • Node / npm / pnpm / yarn
  • LocalStack
    • brew install localstack/tap/localstack-cli
  • Run make start

Install

  1. Create a dynamo table:
awslocal dynamodb create-table \
    --table-name products \
    --key-schema AttributeName=id,KeyType=HASH \
    --attribute-definitions AttributeName=id,AttributeType=S \
    --billing-mode PAY_PER_REQUEST \
    --region us-east-1