deploy-python-fastapi-in-vercel
deploy-python-fastapi-in-vercel copied to clipboard
This example shows how to use FastApi on Vercel with Serverless Functions using the Python Runtime
:package: deploy-python-fastapi-in-vercel
This example shows how to use FastApi on Vercel with Serverless Functions using the Python Runtime.
Systems on which it has been tested.
Did you like the project? Please, considerate a donation to help improve!
✨
Getting started
FastApi + Vercel
This example shows how to use FastApi 0.88.0 on Vercel with Serverless Functions using the Python Runtime.
Demo
deploy-python-fastapi-in-vercel.vercel.app
How it Works
This example uses the Web Server Gateway Interface (WSGI) with FastApi to enable handling requests on Vercel with Serverless Functions.
Running Locally
With Docker Compose
docker-compose up
With Docker
# Build the Docker image
docker build -t deploy-python-fastapi-in-vercel .
# Run the Docker container
docker run -p 8000:8000 deploy-python-fastapi-in-vercel
With uvicorn
Install dependencies
pip install -r requirements.txt
uvicorn main:app --host 0.0.0.0 --port 8000
Your FastApi application is now available at http://localhost:8000
.
One-Click Deploy
Deploy the example using Vercel:
🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Show your support
Give a ⭐️ if this project helped you!
Or buy me a coffee 🙌🏾
📝 License
Copyright © 2024 Hebert F Barros.
This project is MIT licensed.