Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 1.43 KB

README.md

File metadata and controls

60 lines (48 loc) · 1.43 KB

Build Status

Localstack CLI (Under development)

sup? A simple and easy to use command line interface to automate and simplify working with localstack in the development environments based on AWS services.

Developer and CI friendly.

Who is this for?

// TODO

How does it work?

1. Describe your stack in a json or yaml file.
// my_stack.json
{
    "localstack_config": {
        "version": "0.10.8",
        "services": ["lambda"],
        "lambda_executer": "docker-reuse",
        "docker_host": "unix:///var/run/docker.sock",
        "recreate": true
    },
    "services": {
        "my_lambda": {
            "runtime": "go1.x",
            "handler": "main",
            "env_file": ".env.test",
            "function_name": "test_go_function",
            "env_vars": {
                "BAR": "bar",
                "BAZ": "baz"
            },
            "files": ["main", ".env.test"],
            "function_path": "."
        }
    }
}

Note - for more examples of stack descriptions, check examples

2. Deploy your stack
$ sup --stackfile my_stack.json

# or
$ sup # if a (json/yaml) file with the name (stackfile) exist in the current dir

Supported services

  • lambda
  • dynamodb
  • sns
  • sqs
  • kinesis
  • s3