├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── pulumilocal └── pulumilocal.bat ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_apply.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/README.md -------------------------------------------------------------------------------- /bin/pulumilocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/bin/pulumilocal -------------------------------------------------------------------------------- /bin/pulumilocal.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python "%~dp0\pulumilocal" %* 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localstack/pulumi-local/HEAD/tests/test_apply.py --------------------------------------------------------------------------------