Skip to content

Instantly share code, notes, and snippets.

@tejas-kr
Created July 1, 2024 15:13
Show Gist options
  • Save tejas-kr/6b6e7f2bfb45e0d15711578dac20e5af to your computer and use it in GitHub Desktop.
Save tejas-kr/6b6e7f2bfb45e0d15711578dac20e5af to your computer and use it in GitHub Desktop.
Vercel.json file for deploying FastAPI app to vercel. (Change the builds[0].src and routes[0].dest)
{
"version": 2,
"builds": [
{
"src": "main.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "main.py"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment