Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 326 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 326 Bytes

To Deploy to AWS Lambda

  1. Install Gems to Vendor
 bundle config set --local path 'vendor/bundle'
 bundle
  1. Zip it UP
 zip -r function.zip lambda_function.rb vendor
  1. Upload it
 aws lambda update-function-code --function-name discussions-to-collection --zip-file fileb://function.zip