This file contains hidden or 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
| <body> | |
| <style> | |
| .square-box { | |
| width: 33%; | |
| height: 0; | |
| padding-top: 33%; | |
| position: absolute; | |
| right: 20px; | |
| top: 20px; | |
| } |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| if [ $# -eq 0 ]; then | |
| echo "" | |
| echo " Package an AWS Lambda script with all node modules into a zip file" | |
| echo " The packager runs in an AWS Linux docker container, so the node " | |
| echo " modules are compiled for the correct architecture." | |
| echo "" | |
| echo " -s/--src The source folder of the lambda script" | |
| echo " -d/--destination The destination folder for the lambda zip file" |