An image quote generator written in Dart to run on AWS Lambda.
To run the project, you need the following installed:
To build and deploy to your lambda function:
# Non-linux users
$ docker run -v $PWD:/app -w /app --entrypoint /app/build.sh dart:stable && \
zip lambda.zip bootstrap && rm bootstrap
# Linux users
$ chmod +x build.sh && ./build.sh
# Update Lambda function on AWS
$ aws lambda update-function-code --function-name <function-name> --zip-file fileb://./lambda.zip