├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bootstrap ├── bootstrap.sh ├── scripts │ └── init.sh └── templates │ └── cftemplate.yml └── hooks └── build /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/bootstrap/bootstrap.sh -------------------------------------------------------------------------------- /bootstrap/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/bootstrap/scripts/init.sh -------------------------------------------------------------------------------- /bootstrap/templates/cftemplate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/bootstrap/templates/cftemplate.yml -------------------------------------------------------------------------------- /hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markglh/initialised-localstack/HEAD/hooks/build --------------------------------------------------------------------------------