try / vercel.json
abdullahalioo's picture
Upload 22 files
ce23758 verified
raw
history blame contribute delete
316 Bytes
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python",
"config": { "runtime": "3.11" }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
],
"env": {
"PYTHON_VERSION": "3.11"
}
}