JCJosh Camposinitsjoshcampos.codes·Mar 25, 2023 · 8 min read.NET Web API - API Key AuthorizationSimple API Lockdown Introduction The previous article reviewed how to set and read environment variables. We'll use that knowledge and set up an API Key as an environment variable for authorization in a .NET Web API Project. Keys are a variable you w...00
JCJosh Camposinitsjoshcampos.codes·Mar 3, 2023 · 6 min read.NET Web API - Environment VariablesIntroduction The first article in this series was the default WeatherForecast model that is created by default in a .NET Web API project. We'll build off Article 1 to start reading in values from environment variables and appsettings.json files. The ...00
JCJosh Camposinitsjoshcampos.codes·Mar 1, 2023 · 3 min read.NET Web API - Getting StartedIntroduction This article is the start of a series on how to build an API using the .NET Framework. I'm sticking with .NET 6, it is the latest Long-Term-Support (LTS) Version. I'll be using Visual Studio for Mac as my IDE. Before you start yelling, ...00
JCJosh Camposinitsjoshcampos.codes·Aug 13, 2022 · 5 min readFast API - Running in DockerIntroduction This article will setup a basic Hello World FastAPI project running in Docker. The purpose is to start off small before starting on a full real world project. What and Why Docker is a containerization platform. Docker combines applica...00
JCJosh Camposinitsjoshcampos.codes·Apr 13, 2022 · 9 min readFast API - SQL Server ConnectionIntroduction This article will continue our journey and connect a FastAPI project to a SQL Server database. We'll walk through a full CRUD (Create, Read, Update, Delete) example of saving data through our FastAPI project to a database. We'll work ...01A