medicare-fastapi / vercel.json
Mohammed-Altaf's picture
added vercel configurations
dd36965
raw
history blame
275 Bytes
{
"devCommand":"uvicorn main:app --host 0.0.0.0 --port 3000",
"builds": [
{
"src": "main.py",
"use":"@vercel/python"
}
],
"routes":[
{
"src":"(.*)",
"dest":"main.py"
}
]
}