-
Notifications
You must be signed in to change notification settings - Fork 0
vercel
Têng Ûi edited this page Mar 19, 2022
·
5 revisions
prepare requirements.txt
poetry export -f requirements.txt > requirements.txt
Builder for Python WSGI applications on Vercel
@jgtvares/py-vercel
vercel.json
{
"github": {
"silent": true
},
"builds": [
{
"src": "uniquep/wsgi.py",
"use": "@jgtvares/py-vercel"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "uniquep/wsgi.py"
}
]
}