.NET on AWS – Data Persistence using RDS

Introduction In previous Post on this topic, we started by publishing a .NET Core API to AWS Lambda function. Today, we will extend the API and add more functionality to it (database operations) and then redeploy it to AWS Lambda and see how it goes. Database Setup We’ll be using Postgres database (AWS RDS Service) … Read more

Deploying a Web Application to Kubernetes – Basics

Introduction I have previously written few posts on Kubernetes basics. There we covered some building blocks and how to get started with it. Here is the high level information about the core Kubernetes resources: Pod: Manages container and container environment. Deployment: Manages pods and rolling updates. Service: Manages network routing and DNS names. you can … Read more

AWS Applications Deployment Basics – Part 2 (Setup NGINX)

Introduction In the previous post of this series “AWS Application Deployment Basics”, we setup a PostgreSQL database and then we connect to it via a Nodejs application. However, the Nodejs application is running on the same machine and database access is local for it. It is a totally valid setup and because it is on … Read more

AWS Relational Database Service (RDS) – PostgreSQL in Cloud

Introduction In my previous post “Introduction to AWS“, I gave a high level overview about various amazon services and their common uses. Today, we will go into details of Amazon RDS. We also setup a PostgreSQL instance using this service and connect to it using a tool Azure Data Studio Amazon RDS is a web … Read more

Deploying .NET Core, Angular and Postgres Web Application on Ubuntu (nginx)

Introduction In this post, I will be deploying and running a .NET Core, Angular and Postgres application on an Ubuntu VM running in azure cloud. This involves different tasks in different technologies to be done and I’ve previously written few posts about these different topics. In this post, I will combine all those learning so … Read more

Build Accounting Application Using .NET Core, Angular and Entity-Framework

So, in 2016, I was discussing the double-entry accounting rules with one of my friend to understand it better in order to program it in a line of business application. However the accounting part was very small and it was mainly a call to external API or something like that. I had read accounting in … Read more