├── .github └── workflows │ └── integration.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── awslocal └── awslocal.bat ├── output └── .gitkeep ├── requirements.txt ├── setup.py └── tests └── bin ├── README.md ├── cfn_templates └── lamba │ ├── TestLambda │ ├── package.json │ └── src │ │ └── app.js │ └── template.yaml ├── test.cloudformation.bats └── test.smoke.bats /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/README.md -------------------------------------------------------------------------------- /bin/awslocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/bin/awslocal -------------------------------------------------------------------------------- /bin/awslocal.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python "%~dp0\awslocal" %* 4 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | localstack-client 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/setup.py -------------------------------------------------------------------------------- /tests/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/tests/bin/README.md -------------------------------------------------------------------------------- /tests/bin/cfn_templates/lamba/TestLambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/tests/bin/cfn_templates/lamba/TestLambda/package.json -------------------------------------------------------------------------------- /tests/bin/cfn_templates/lamba/TestLambda/src/app.js: -------------------------------------------------------------------------------- 1 | exports.handler = async (event, context) => { return "Pong!" }; -------------------------------------------------------------------------------- /tests/bin/cfn_templates/lamba/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/tests/bin/cfn_templates/lamba/template.yaml -------------------------------------------------------------------------------- /tests/bin/test.cloudformation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/tests/bin/test.cloudformation.bats -------------------------------------------------------------------------------- /tests/bin/test.smoke.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/awscli-local/HEAD/tests/bin/test.smoke.bats --------------------------------------------------------------------------------