Skip to main content

Yet another deploy tool for AWS Lambda in the virtualenv environment.

Project description

=======
Lamvery
=======

.. image:: https://img.shields.io/travis/marcy-terui/lamvery/master.svg
:target: https://travis-ci.org/marcy-terui/lamvery

.. image:: https://img.shields.io/coveralls/marcy-terui/lamvery.svg
:target: https://coveralls.io/github/marcy-terui/lamvery

.. image:: https://img.shields.io/pypi/v/lamvery.svg
:target: https://pypi.python.org/pypi/lamvery

.. image:: https://img.shields.io/pypi/dm/lamvery.svg
:target: https://pypi.python.org/pypi/lamvery/


Yet another deploy tool for AWS Lambda in the virtualenv.

Requirements
------------

- Python2.7

- virtualenv

Installation
------------

.. code::

pip install lamvery

Setup
-----

At first,

.. code::

lamvery init

And put your ``lamvery.yml`` like this.

.. code::

configuration:
region: us-east-1
name: sample_lambda_function
runtime: python2.7
role: arn:aws:iam::000000000000:role/lambda_basic_execution
handler: lambda_function.lambda_handler
description: This is sample lambda function.
timeout: 10
memory_size: 128
publish: true

Usage
-----

- Archive your code and libraries to ``<your-function-name>.zip``

.. code::

lamvery archive

- Archive and deploy your code and libraries

.. code::

lamvery deploy

Options
-------

- ``-f`` or ``--file``

| This option needed by all commands.
| Specify the configuration file.
| default: ``lamvery.yml``
|

- ``-d`` or ``--dry-run``

| This option needed by ``deploy`` and ``alias`` commands.
| Output the difference of configuration and the alias without updating.
|

- ``-a`` or ``--alias``

| This option needed by ``deploy`` and ``alias`` commands.
| Alias ​​for the version of your function.
|

- ``-v`` or ``--alias-version``

| This option only needed by ``alias`` command.
| Version of your function to set the alias.

Configuration
-------------

region
~~~~

| The region name in AWS.
| The behaviour depends on ``boto3`` if you doesn't set this option.

name
~~~~

The name of your function.

runtime
~~~~~~~

| The runtime environment for the Lambda function you are uploading.
| Currently, ``lamvery`` supports only ``python2.7``.

role
~~~~

The Amazon Resource Name (ARN) of the IAM role for your function.

handler
~~~~~~~

The function within your code that Lambda calls to begin execution.

description
~~~~~~~~~~~

The description of your function.

timeout
~~~~~~~

The function execution time(seconds) at which Lambda should terminate
the function.

memory\_size
~~~~~~~~~~~~

The amount of memory for your function environment.

publish
~~~~~~~

This boolean parameter can be used to request AWS Lambda to
create/update the Lambda function and publish a version as an atomic
operation.

alias
~~~~~~~

The default alias when not given ``-a`` or ``--alias`` argument.

Development
-----------

- Source hosted at `GitHub <https://github.com/marcy-terui/lamvery>`__
- Report issues/questions/feature requests on `GitHub
Issues <https://github.com/marcy-terui/lamvery/issues>`__

Pull requests are very welcome! Make sure your patches are well tested.
Ideally create a topic branch for every separate change you make. For
example:

1. Fork the repo
2. Create your feature branch (``git checkout -b my-new-feature``)
3. Commit your changes (``git commit -am 'Added some feature'``)
4. Push to the branch (``git push origin my-new-feature``)
5. Create new Pull Request

Authors
-------

Created and maintained by `Masashi
Terui <https://github.com/marcy-terui>`__ (marcy9114@gmail.com)

License
-------

MIT License (see
`LICENSE <https://github.com/marcy-terui/lamvery/blob/master/LICENSE>`__)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lamvery-0.0.5.tar.gz (6.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page