Using Identity In ASP.NET Core MVC Authentication
This article explains how to get started with Identity.UI in ASP.Net Core MVC user authentication and registration. In this article, we discussed how to use Identity UI in ASP.NET Core…
How to Implement JWT Authentication in Web API Using .Net 8.0, Asp.Net Core
JWT stands for JSON Web Token digitally signed using a secret key by a token provider. It helps the resource server to verify the token data using the same secret…
Run SQL Server 2022 Linux container images with Docker
With a containerised version of SQL Server, you can run the database server anywhere you can install docker. To install SQL Server 2022 in a container, you need to create…
LocalStack – Mock AWS in local development
Most of us are familiar with Amazon Web Services (AWS) and have probably used their cloud computing services at some point in our careers. AWS is a go-to solution for…
Using LocalStack to test AWS services locally
LocalStack is a cloud service emulator that runs in a single container on your machine or within your CI environment. With LocalStack, you can run your AWS applications or Lambdas…
Simulating AWS environment locally with AWS Localstack
LocalStack provides an easy-to-use test/mocking framework for developing Cloud applications. It spins up a testing environment on your local machine that provides the same functionality and APIs as the real…
Develop and Test AWS Applications Locally with Localstack
When working with the leading cloud provider in the market, AWS, it is important to constantly use their native services. These services may not be open source, which makes it…
Create a simple OTP system with AWS Serverless
This post describes how to implement a simple One Time Password (OTP) system with AWS Serverless services which can be used as a part of two-step verification. Below tools and…
Best Practices for Running Container WordPress on AWS (ECS, EFS, RDS, ELB) using CDK
In this post, i will explain the high availability architecture on AWS for WordPress eCommerce. To reuse the infrastructure and simplify the deployment, I have used the AWS CDK. Cloud…
Workflow Orchestration on AWS: The Ultimate Guide to AWS Step Functions
In the dynamic world of cloud computing, orchestrating complex workflows across multiple AWS services is crucial for creating scalable and maintainable applications. AWS Step Functions, a serverless orchestration service, is…