Metadata-Version: 2.1
Name: spin-and-heave
Version: 0.2.4
Summary: package and zip lambdas then run terraform.
Home-page: https://bitbucket.org/rednap/spin-and-heave
Author: Andy Klier
Author-email: andyklier@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: setuptools

# spin-and-heave  

use lambdaci docker image to package and zip lambda package, then run terraform apply.  

### usage  

`$ spin-and-heave lambda_project`  

*where "lambda_project" is the directory with your lambda files  
this will run the lambdaci docker image for the runtime you're using  
then save the zip file (in this case "lambda_project.zip") in your current  
working directory*  

`$ spin-and-heave lambda_project -s`  

*skip terraform apply*  

`$ spin-and-heave lambda_project -js`  

*spin and heave a node lambda package, defaults to nodejs10.x  
this will run "npm install --production" instead of "pip install"*  

`$ spin-and-heave lambda_project -r python3.7`  

*alternatively, use custom runtimes.  
this has no real use yet...   
only python and node would be supported thus far*


