generated from ran-isenberg/aws-lambda-handler-cookbook
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: sync to Cookbook v6.0.0 python 3.13 (#28)
Co-authored-by: Ran Isenberg <[email protected]>
- Loading branch information
1 parent
ee5736c
commit 21fc5f0
Showing
10 changed files
with
727 additions
and
725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# AWS Serverless service cookiecutter (Python) | ||
|
||
[](https://github.com/ran-isenberg/cookiecutter-serverless-python/blob/master/LICENSE) | ||
 | ||
 | ||
 | ||
 | ||
 | ||
|
@@ -11,24 +11,14 @@ | |
|
||
This project can serve as a cookiecutter template for new Serverless services - CDK deployment code, pipeline and handler are covered with best practices built in. | ||
<br></br> | ||
The project is based on my [AWS Lambda Cookbook template project](https://github.com/ran-isenberg/aws-lambda-handler-cookbook) and synced to version 4.5.1: | ||
The project is based on my [AWS Lambda Cookbook template project](https://github.com/ran-isenberg/aws-lambda-handler-cookbook): | ||
|
||
[](https://github.com/ran-isenberg/aws-lambda-handler-cookbook/blob/master/LICENSE) | ||
 | ||
[](https://codecov.io/gh/ran-isenberg/aws-lambda-handler-cookbook) | ||
 | ||
 | ||
 | ||
|
||
|
||
**[📜Documentation](https://ran-isenberg.github.io/aws-lambda-handler-cookbook/)** | **[Blogs website](https://www.ranthebuilder.cloud)** | ||
> **Contact details | [email protected]** | ||
<br></br> | ||
## **Prerequisites** | ||
|
||
* **Docker** - install [Docker](https://www.docker.com/). Required for the Lambda layer packaging process. | ||
* **[AWS CDK](cdk.md)** - Required for synth & deploying the AWS Cloudformation stack. | ||
* Python 3.12 | ||
* Python 3.13 | ||
* [poetry](https://pypi.org/project/poetry/) - Make sure to run ``poetry config --local virtualenvs.in-project true`` so all dependencies are installed in the project '.venv' folder. | ||
* For Windows based machines, use the Makefile_windows version (rename to Makefile). Default Makefile is for Mac/Linux. | ||
* Cookiecutter - install with pip/brew ``brew install cookiecutter`` or ``pip install cookiecutter`` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"dependencies": { | ||
"aws-cdk": "2.160.0" | ||
"aws-cdk": "2.167.0" | ||
} | ||
} |
Oops, something went wrong.