Mitch Garnaat

Merge remote-tracking branch 'origin/develop' into python-refactor

Showing 1 changed file with 13 additions and 1 deletions
...@@ -11,7 +11,7 @@ deploy, update, and test functions for AWS Lambda. ...@@ -11,7 +11,7 @@ deploy, update, and test functions for AWS Lambda.
11 There are quite a few steps involved in developing a Lambda function. 11 There are quite a few steps involved in developing a Lambda function.
12 You have to: 12 You have to:
13 13
14 -* Write the function itself (Javascript only for now) 14 +* Write the function itself
15 * Create the IAM role required by the Lambda function itself (the executing 15 * Create the IAM role required by the Lambda function itself (the executing
16 role) to allow it access to any resources it needs to do its job 16 role) to allow it access to any resources it needs to do its job
17 * Add additional permissions to the Lambda function if it is going to be used 17 * Add additional permissions to the Lambda function if it is going to be used
...@@ -33,6 +33,18 @@ your function on. ...@@ -33,6 +33,18 @@ your function on.
33 If you need to make changes, kappa will allow you to easily update your Lambda 33 If you need to make changes, kappa will allow you to easily update your Lambda
34 function with new code or update your event sources as needed. 34 function with new code or update your event sources as needed.
35 35
36 +Installation
37 +------------
38 +
39 +The quickest way to get kappa is to install the latest stable version via pip:
40 +
41 + pip install kappa
42 +
43 +Or for the development version:
44 +
45 + pip install git+https://github.com/garnaat/kappa.git
46 +
47 +
36 Getting Started 48 Getting Started
37 --------------- 49 ---------------
38 50
......