Modern APIs with FastAPI and Python Transcripts
Chapter: Deploying FastAPI on Linux with gunicorn and nginx
Lecture: Deployment introduction
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
We've built a really nice API.
0:02
It's got our weather report, it's got our ability to submit recent weather events and
0:07
see those change over time. But an API is meant to be used by
0:11
other people, by other applications and
0:13
in order for that to happen,
0:14
we need to put it on a server somewhere so applications can interact with it.
0:20
And that's what this final chapter here is all about.
0:22
It's about taking that application that we already built and deciding where to host it and
0:27
then going through the actual steps of hosting it there.
0:30
It's pretty straightforward. There's a lot of little details that you'll see,
0:34
but they're just in a script that we can talk through,
0:36
so it's not gonna be super intense.
0:39
But that's the idea. We're going to go take this thing that we built throughout
0:41
this course and put it on the internet somewhere that you can use.