Fastapi Tiangolo Com Deployment
Fastapi Tiangolo Com Deployment
FastAPI Features Learn Reference - Code API FastAPI People Resources About Help Release Notes
For a web API, it normally involves putting it in a remote machine, with a server program that
provides good performance, stability, etc, so that your users can access the application efficiently
and without interruptions or problems.
This is in contrast to the development stages, where you are constantly changing the code,
breaking it and fixing it, stopping and restarting the development server, etc.
Deployment Strategies
There are several ways to do it depending on your specific use case and the tools that you use.
You could deploy a server yourself using a combination of tools, you could use a cloud service
that does part of the work for you, or other possible options.
I will show you some of the main concepts you should probably keep in mind when deploying a
FastAPI application (although most of it applies to any other type of web application).
You will see more details to keep in mind and some of the techniques to do it in the next sections.
✨