How to return datetime, dicts, lists, xml, pydantic models and other data types response in fastAPI (With Examples)

In this guide we learn how to return different types of data and how we can create our own custom response

FastAPI has made it easy for you to handle responses that deal with all sorts of data types (like datetime objects). However, It’s important to understand how FastAPI handles responses as you may run into bugs and lengthy debugging sessions otherwise. More info on FastAPI docs [Read More]

How to use VS Code Dev Containers with your docker compose deployment for efficient development and deployment

In this guide we learn we can use VS Code's dev containers to develop inside any of our services setup by a docker compose deployment

Common Deployment Problems Often times, as developers we are working across a tech stack (LAMP, MEAN, MERN) and you may need be working on multiple services simultaneously. [Read More]