fix: test vercel

This commit is contained in:
muhamad fais aizat 2025-05-16 01:21:59 +07:00
parent e5ee6a4d50
commit 3128d72446
3 changed files with 24 additions and 0 deletions

11
backend/Pipfile Normal file
View File

@ -0,0 +1,11 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "*"
uvicorn = "*"
[requires]
python_version = "3.9"

Binary file not shown.

13
backend/vercel.json Normal file
View File

@ -0,0 +1,13 @@
{
"functions": {
"index.py": {
"runtime": "vercel-python@3.9"
}
},
"routes": [
{
"src": "/(.*)",
"dest": "index.py"
}
]
}