Skip to content

A tutorial for building AWS Serverless applications with .NET Core.

License

Notifications You must be signed in to change notification settings

normj/ServerlessTODOListTutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Building a AWS Serverless TODO List Application

This tutorial shows how to build a very simple TODO list application. Along the way you will learn how to use several AWS services like Amazon DynamoDB and AWS Lambda. I wrote this with the intention of using this as material for giving AWS Talks on .NET serverless but it should be easy enough to follow by yourself. If not please let me know where I can clarify things.

dotnet try

At Microsoft's 2019 Build conference a new .NET Global tool called dotnet try was released which allows the creation of interactive .NET documentation.

Setup

To get started with this tutorial follow the following steps.

  • Ensure .NET Core 3.1 SDK is installed. The tool dotnet try requires .NET Core 3.1
  • Either the AWS Toolkit for Visual Studio or Amazon.Lambda.Tools .NET Core Global Tool
    • AWS Toolkit for Visual Studio Download
    • Amazon.Lambda.Tools .NET Core Global Tool - dotnet tool install -g Amazon.Lambda.Tools
    • Note: The AWS Toolkit for Visual Studio is not compatible with Visual Studio for Mac.
  • Clone this repository. Be sure to clone the repository in a directory you have write access.
    • git clone https://github.com/normj/ServerlessTODOListTutorial.git
  • Install dotnet try
    • The current version publish to NuGet does not currently work for this project. The preview package Microsoft.dotnet-try has to be used from its myget feed.
    • dotnet tool install -g --add-source "https://dotnet.myget.org/F/dotnet-try/api/v3/index.json" Microsoft.dotnet-try
  • Start dotnet try in the directory the repo was cloned
    • dotnet try

alt text

Let's Start

If you are seeing this page after running dotnet try then click here to get started.

About

A tutorial for building AWS Serverless applications with .NET Core.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages