References:
https://github.com/tesseract-ocr/tesseract/wiki/Compiling
http://stackoverflow.com/questions/33588262/tesseract-ocr-on-aws-lambda-via-virtualenv
{ | |
"aws_access_key": "${AWS_ACCESS_KEY_ID}", | |
"aws_secret_key": "${AWS_SECRET_ACCESS_KEY}", | |
"vpc_region": "${vpc_region}", | |
"vpc_id": "${vpc_id}", | |
"vpc_public_sn_id": "${vpc_public_sn_id}", | |
"vpc_public_sg_id": "${vpc_public_sg_id}", | |
"source_ami": "${source_ami}", | |
"instance_type": "${instance_type}", | |
"ssh_username": "${ssh_username}" |
#!/bin/bash -e | |
main() { | |
sudo apt-get install -y nano | |
} | |
main |
{ | |
"variables": { | |
"aws_access_key": "${AWS_ACCESS_KEY_ID}", | |
"aws_secret_key": "${AWS_SECRET_ACCESS_KEY}", | |
"vpc_region": "${vpc_region}", | |
"vpc_id": "${vpc_id}", | |
"vpc_public_sn_id": "${vpc_public_sn_id}", | |
"vpc_public_sg_id": "${vpc_public_sg_id}", | |
"source_ami": "${source_ami}", | |
"instance_type": "${instance_type}", |
JSDoc-Style-Guide | |
Forked from the KimonoLabs JS Doc Style Guide | |
This guide was originally created by Shri Ganeshram as an internal style guide for Kimono Labs and is licensed under the MIT License. You are encouraged to fork this repository and make adjustments according to your preferences. It is currently a work in progress. | |
You can learn more about JSDoc here. | |
Table of Contents | |
Intro |