How do I deploy a .NET core application on AWS EC2?

In this article, I will take you through how to deploy your first test .NET Core application to AWS EC2.  I wanted to try deploying my application to aws to for testing purposes. As it was known to me, ECS would be a good way to get started on serverless deployment. But afterward, I came … Read more

How do you fix you need to enable JavaScript to run this app in .NET Core

Error: In Postman, Solution worked for me: I developed a simple GET API endpoint and was trying to hit it from my client app as well as from Postman. But it hasn’t worked. I wasted a few hours searching for the solution, but nothing worked. In the end, I found that the API endpoint path … Read more

How do I retrieve secrets from AWS Secret Manager in .NET Core Console App?

.NET Core/.NET console application contains a program.cs file, which has the Main method that runs when we execute the application. People normally use the console application executables for running smaller jobs or batch processing. In some scenarios, bigger applications might need configurations to be stored in a separate configuration file. Click here to locate the sample … Read more

Run Dotnet Test Project using AWS secrets with Postgres database in the backend in Gitlab CICD

This blog is about running a Dotnet Core test project with the Postgres database in the backend in the GitLab CICD pipeline. In GitLab-CICD, we will create a Postgres instance, which will be used by Integration Tests written in Dotnet Core. We will also obtain AWS secrets from the secret manager and submit them for … Read more