-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add nodejs20.x support (#138) * Add nodejs20.x support * Use preview tag * Apply suggestions from code review --------- Co-authored-by: Wing Fung Lau <[email protected]> Co-authored-by: Mohamed ElAsmar <[email protected]> * Update nodejs20.x/hello-img/{{cookiecutter.project_name}}/hello-world/Dockerfile * skip lint test for nodejs20 templates * Empty-Commit --------- Co-authored-by: Andrea Culot <[email protected]> Co-authored-by: Mohamed ElAsmar <[email protected]> Co-authored-by: Mehmet Nuri Deveci <[email protected]>
- Loading branch information
1 parent
c22b4ee
commit 36ba1b7
Showing
229 changed files
with
12,304 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Cookiecutter NodeJS CloudWatch Events Quick Start Application | ||
|
||
A cookiecutter template to create a NodeJS CloudWatch Events Quick Start Application using [Serverless Application Model (SAM)](https://github.com/awslabs/serverless-application-model). | ||
|
||
## Requirements | ||
|
||
* [AWS SAM CLI](https://github.com/awslabs/aws-sam-cli) | ||
|
||
## Usage | ||
|
||
Generate a boilerplate template in your current project directory using the following syntax: | ||
|
||
* **NodeJS 20**: `sam init --runtime nodejs20.x --app-template quick-start-cloudwatch-events --name cwe-app` | ||
|
||
> **NOTE**: ``--name`` allows you to specify a different project folder name | ||
# Credits | ||
|
||
* This project has been generated with [Cookiecutter](https://github.com/audreyr/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"project_name": "Name of the project", | ||
"runtime": "nodejs20.x", | ||
"architectures": { | ||
"value": ["x86_64", "arm64"] | ||
}, | ||
"_copy_without_render": [ | ||
".gitignore" | ||
] | ||
} |
Oops, something went wrong.