Files
quantumbotx/vercel.json
T
Reynov Christian 346f81bd41 Modify Vercel config to use app.py and Python 3.12
Updated the Vercel configuration to use app.py instead of index.py and set the Python runtime to 3.12.
2025-10-16 01:51:50 +08:00

22 lines
287 B
JSON

{
"version": 2,
"builds": [
{
"src": "api/app.py",
"use": "@vercel/python",
"config": {
"runtime": "python3.12"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "api/app.py"
}
],
"env": {
"SKIP_MT5_INIT": "1"
}
}