HireWithAi / vercel.json
github-actions[bot]
Deploy from GitHub Actions
c0b850f
raw
history blame contribute delete
289 Bytes
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/app.py"
}
],
"functions": {
"app.py": {
"maxDuration": 60
}
},
"env": {
"PYTHONPATH": "./"
}
}