-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implment IIIFv3 and Lambda response streaming
- Convert Lambda to streaming function url - Use IIIF v3 branch of node-iiif - Add IIIF v3 tests and other supports - Add service discovery endpoint at `/` - Create Terraform module - Create CloudFormation and Terraform examples - Enhance docs
- Loading branch information
Showing
32 changed files
with
1,301 additions
and
928 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,11 +1,26 @@ | ||
# AWS SAM | ||
.aws | ||
.aws-sam | ||
coverage | ||
deploy.yaml | ||
node_modules | ||
samconfig.toml | ||
package.yml | ||
samconfig.toml | ||
|
||
# NodeJS Build | ||
coverage | ||
node_modules | ||
|
||
# Secrets | ||
.env | ||
env.json | ||
|
||
# Terraform | ||
.terraform* | ||
*.tfstate* | ||
*.tfvars | ||
|
||
# Misc | ||
.vscode | ||
*~undo-tree~ | ||
.DS_Store | ||
.env | ||
sharp-lambda-layer.* | ||
*.log |
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,11 +1,11 @@ | ||
{ | ||
"name": "serverless-iiif-dependencies", | ||
"version": "4.3.2", | ||
"version": "5.0.0", | ||
"description": "Dependencies for serverless IIIF", | ||
"author": "Michael B. Klein", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"aws-sdk": "^2.368", | ||
"iiif-processor": "^3.2.3" | ||
"iiif-processor": "^4.0.0" | ||
} | ||
} |
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 @@ | ||
# serverless-iiif CloudFormation Examples | ||
|
||
This directory contains examples of how to use [CloudFormation](https://aws.amazon.com/cloudformation/) to deploy a serverless-iiif image server as part of a larger application stack. Please refer to the [CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html) for more information on how to tailor these templates to your own needs and deploy them to AWS. | ||
|
||
## `custom_hostname.yml` | ||
|
||
The `custom_hostname` template will deploy a full application stack consisting of: | ||
|
||
- A serverless-iiif image server | ||
- A CloudFront distribution with a custom hostname and SSL certificate |
Oops, something went wrong.