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 I connect my Amazon RDS to DBeaver?

In this answer, I am creating PostgreSQL RDS in AWS as an example, Follow the below steps, In AWS Console, Select your database in the RDS dashboard Click on “Modify” In the “Connectivity” section, click on “Additional Configurations” Select Public option Save changes with Immediate Apply option Go inside your database by clicking the database … 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

.NET- Processes, Threads, Tasks, Async-Await analogy

In my initial development days, I used to get confused when it came to threads, tasks, and asynchrony. Later on, I was able to understand it. In this blog, I want to give you an overview of how it works in .NET. When you run your application or program, it executes on your machine and … 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

OIDC in ReactJS & Razor App with .NET Core Identity

Every web application must consider security. With the aid of this blog, you may integrate the most recent authentication standard, OpenID Connect (OIDC), into a.NET core application. Due to the intricate processes that must be performed precisely, implementing a protocol is a laborious task. A library called Duende Identity Server can be used with.NET applications … Read more

Ready-To-Use project in ReactJS with Bootstrap 5 & .NET Core

The subject of this post is how to start developing.NET Core/.NET6 Plus ReactJs SPA applications. UI templates from Bootstrap 5 have been imported. Microsoft Identity is utilized for authentication. Additionally, Google Sign In is implemented. Starting any new project typically takes a long time. It takes more time and effort to get going if you … Read more