This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from hayd/sar
Publish to SAR
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.deno_dir | ||
.serverless | ||
node_modules | ||
*.zip |
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,15 @@ | ||
# Deno Lambda Layer | ||
|
||
A custom runtime for [deno](https://github.com/denoland/deno) applications. | ||
|
||
See the [README on github](https://github.com/hayd/deno-lambda) for more information. | ||
|
||
--- | ||
|
||
Made with ❤️ by Andy Hayden. | ||
Available on the [AWS Serverless Application Repository](https://aws.amazon.com/serverless). | ||
|
||
|
||
## License | ||
|
||
MIT |
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,34 @@ | ||
AWSTemplateFormatVersion: '2010-09-09' | ||
Transform: AWS::Serverless-2016-10-31 | ||
Description: > | ||
A custom runtime for deno | ||
Resources: | ||
DenoLambdaLayer: | ||
Type: AWS::Lambda::LayerVersion | ||
Properties: | ||
LayerName: Deno | ||
Description: A custom runtime for deno | ||
Content: | ||
S3Bucket: DENO_LAMBDA_BUCKET | ||
S3Key: deno-lambda-layer_DENO_LAMBDA_VERSION.zip | ||
|
||
Outputs: | ||
DenoArn: | ||
Value: !Ref DenoLambdaLayer | ||
|
||
Metadata: | ||
AWS::ServerlessRepo::Application: | ||
Name: Deno | ||
Description: | | ||
A custom runtime for deno | ||
Author: Andy Hayden | ||
SpdxLicenseId: MIT | ||
Labels: | ||
- deno | ||
- layer | ||
- lambda | ||
- typescript | ||
HomePageUrl: https://github.com/hayd/deno-lambda | ||
SemanticVersion: DENO_LAMBDA_VERSION | ||
SourceCodeUrl: https://github.com/hayd/deno-lambda |