Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 681 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 681 Bytes

Serverless TODO API

Getting started

  1. Fork this repo on github by clicking here

  2. Create a personal github access token with the following scopes: admin:repo_hook and repo. (It will be used by the CICD pipeline to pull changes from your fork)

  3. Push token to secrets manager

aws secretsmanager create-secret --name GITHUB_TOKEN --secret-string <YOUR_GITHUB_PERSONAL_ACCESS_TOKEN>
  1. Install dependencies
make bootstrap
  1. build CDK package
make build
  1. deploy
make deploy