Category Computer Science

Dockerize FastApi

What is Docker: Docker is a platform and tool that simplifies the process of building, deploying, and managing applications using containers. What is Dockerization/Containerization: Dockerizartion or Containerzation is a method of packaging and deploying software applications along with their dependencies…

Virtual Environment – Python venv

Virtual environment (“virtualenv” or “venv”) is a self-contained directory that contains local Python interpreter along with a set of libraries, packages, and scripts. This setup allows you to isolate your Python project’s dependencies from those of other projects or the…

Environment Variables

Environment variables are dynamic values that can affect the way running processes behave on a computer system. They are part of the operating system environment in which a process runs and are used by applications to determine various settings and…