Skip to content

Commit

Permalink
Released 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carsongee committed Oct 4, 2016
1 parent 55f41b3 commit 080d906
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.rst
Expand Up @@ -76,18 +76,18 @@ which creates a faked AWS Context object before running the specified
*dancer*.

From there we can also package the functions (the same package works
for all defined *dancers*/Lambda functions). So without configuring any AWS credentials,
we can run ``lambada package`` to create a zip file with all your
requirements packaged up (from the earlier created
``requirements.txt``) that you can manually upload to AWS Lambda through
the Web interface or similar.
for all defined *dancers*/Lambda functions). So without configuring
any AWS credentials, we can run ``lambada package`` to create a zip
file with all your requirements packaged up (from the earlier created
``requirements.txt``) that you can manually upload to AWS Lambda
through the Web interface or similar.

If you have your AWS API credentials setup, and the correct
permissions, you can also run ``lambada upload`` to have the function
created and/or versioned with the packaged code for each *dancer*.

Pretty neat so far, but where it starts to cool is when there are many
*dancers* with different requirements, VPCs, timeouts, and memory
Pretty neat so far, but where it starts to get cool is when there are
many *dancers* with different requirements, VPCs, timeouts, and memory
requirements all in the same deployable package similar to the
following. We're going to go ahead and call our file
``fouronthefloor.py`` just as a reference for the customization you
Expand Down
7 changes: 7 additions & 0 deletions RELEASES.rst
@@ -0,0 +1,7 @@
Releases
~~~~~~~~

0.1.0
-----

First release
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -12,6 +12,7 @@ Welcome to Lambada's documentation!
.. toctree::
:maxdepth: 2

releases
lambada


Expand Down
1 change: 1 addition & 0 deletions docs/releases.rst
@@ -0,0 +1 @@
.. include:: ../RELEASES.rst
2 changes: 1 addition & 1 deletion lambada/__init__.py
Expand Up @@ -8,7 +8,7 @@

from six import iteritems

__version__ = '0.0.0'
__version__ = '0.1.0'
log = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@

setup(
name='lambada',
version='0.0.0',
version='0.1.0',
packages=find_packages(),
package_data={},
license='License :: OSI Approved :: Apache Software License',
Expand Down

0 comments on commit 080d906

Please sign in to comment.