Initial commit

Created from https://vercel.com/new
This commit is contained in:
CJackHwang
2026-01-21 15:14:49 +00:00
commit ea4de62fc3
21 changed files with 266477 additions and 0 deletions

15
vercel.json Normal file
View File

@@ -0,0 +1,15 @@
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
]
}