init project

This commit is contained in:
2025-11-02 16:10:27 +08:00
commit dcdd617a68
16 changed files with 2409 additions and 0 deletions

19
vercel.json Normal file
View File

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