Example implementation of a custom runtime for running Elixir on AWS Lambda.
The package can be installed by adding aws_lambda_elixir_runtime
to your list
of dependencies in mix.exs
:
def deps do
[
{:aws_lambda_elixir_runtime, "~> 0.1.0"}
]
end
Documentation can be generated with ExDoc.
This section is a step by step for creating the hello world example.
First, create a new mix project in a fresh directory:
> mix new --app hello_world ./hello_world
Now declare a dependency on :aws_lambda_elixir_runtime
and
:distillery
, which is used to package the OTP release.
Work in Progress