Skip to content

Instantly share code, notes, and snippets.

@feliperdamaceno
Created June 26, 2024 23:46
Show Gist options
  • Save feliperdamaceno/bd5bef0351f0183f512bda34f0b1ef75 to your computer and use it in GitHub Desktop.
Save feliperdamaceno/bd5bef0351f0183f512bda34f0b1ef75 to your computer and use it in GitHub Desktop.
Vercel config to run FastAPI.
{
"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