Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ Example lambda.json file:
"handler": "function.lambda_handler",
"role": "arn:aws:iam::00000000000:role/lambda_basic_execution",
"requirements": ["pygithub"],
"ignore": ["circle.yml"],
"ignore": [
"circle.yml",
".git",
"*.pyc"
],
"timeout": 30,
"memory": 512
}
Expand Down
9 changes: 7 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ Example lambda.json file:
"handler": "function.lambda_handler",
"role": "arn:aws:iam::00000000000:role/lambda_basic_execution",
"requirements": ["pygithub"],
"ignore": ["circle.yml"],
"ignore": [
"circle.yml",
".git",
"*.pyc"
],
"timeout": 30,
"memory": 512
}
Expand All @@ -64,7 +68,8 @@ To specify an alternative profile that has been defined in

lambda-uploader --profile=alternative-profile

To specify an alternative, prexisting virtualenv use the ``--virtualenv`` parameter.
To specify an alternative, prexisting virtualenv use the
``--virtualenv`` parameter.

.. code:: shell

Expand Down
6 changes: 5 additions & 1 deletion example/lambda.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
"handler": "function.lambda_handler",
"role": "arn:aws:iam::00000000000:role/lambda_basic_execution",
"requirements": ["Jinja2==2.8"],
"ignore": ["circle.yml"],
"ignore": [
"circle.yml",
".git",
"*.pyc"
],
"timeout": 30,
"memory": 512
}