AIGreenPath / vercel.json
Zayeemk's picture
Upload 26 files
18935fc verified
raw
history blame contribute delete
364 Bytes
{
"version": 2,
"name": "ai-shipment-optimization",
"builds": [
{
"src": "deploy.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "deploy.py"
}
],
"env": {
"FLASK_ENV": "production"
},
"functions": {
"deploy.py": {
"maxDuration": 30
}
}
}