yarn install
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
export IS_LOCAL=1 # todo: replace with inbuilt debug, required to ignore layer for local development - its sufficient with installed requirements.txt
This project was bootstrapped with Create Serverless Stack.
Start by installing the dependencies.
$ yarn installStarts the local Lambda development environment.
Build your app and synthesize your stacks.
Generates a .build/ directory with the compiled files and a .build/cdk.out/ directory with the synthesized CloudFormation stacks.
Deploy all your stacks to AWS. Or optionally deploy, a specific stack.
Remove all your stacks and all of their resources from AWS. Or optionally removes, a specific stack.
Runs your tests using Jest. Takes all the Jest CLI options.
Learn more about the Serverless Stack.