Run ASP.NET Core on OpenShift

Today I’ll show you how to Run ASP.NET Core on OpenShift. First be aware of the following prerequisites: You’ll need a working Docker installation. If you are using Windows 10 you can get Docker for Windows here. Be sure to Disable TLS for 127.0.0.1:2375 for your Docker installation Be sure to set 172.30.0.0/16 as an...

dotnet new templates for AWS Lambda and Raspberry Pi

After reading the following articles: How to create your own templates for dotnet new Custom Project Templates Using dotnet new and having a twitter conversation with Sayed-Ibrahim-Hashimi I decided it was a nice idea to create some templates based on the code of some of my posts. So here are the results: Create a an...

Deploy your ASP.NET Core Web API to AWS Lambda

Today I’ll show you how to Deploy your ASP.NET Core Web API to AWS Lambda. First be aware of the following prerequisites: You’ll need an AWS account: https://aws.amazon.com/ You’ll need AWS CLI installed: http://docs.aws.amazon.com/cli/latest/userguide/installing.html You’ll need your AWS security credentials Some...

Step by step: .NET Core and Azure Cosmos DB

Step by step: .NET Core and Azure Cosmos DB is a short post on how to connect to Cosmos DB, save a document and then query to find it. Let’s start: Create a Cosmos DB account Create a Cosmos DB account in your Azure subscription. Once created get the URI and the primary Read-write key from the Keys section. If you need...