mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 03:07:53 +00:00
346f81bd41
Updated the Vercel configuration to use app.py instead of index.py and set the Python runtime to 3.12.
22 lines
287 B
JSON
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"
|
|
}
|
|
}
|