Hello World F# Example

Prerequisites

Build and Package

From the root of this directory, run build.cmd, or build.sh if on Linux / Mac.

This will produce your deployment package at bin/release/netcoreapp1.0/deploy-package.zip.

Deployment and Invocation

Once packaged, you can follow these instructions to deploy and remotely invoke the function on AWS Lambda.

In short the commands you will need to run are (from the root of this directory):

serverless config credentials --provider aws --key {YourAwsAccessKey} --secret {YourAwsSecret}
serverless deploy -v
serverless invoke -f hello -l
serverless remove

By default this template deploys to us-east-1, you can change that in "serverless.yml" under the region: us-east-1 key.