mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 11:17:44 +00:00
11 lines
190 B
Python
11 lines
190 B
Python
|
|
import os
|
||
|
|
from core import create_app
|
||
|
|
|
||
|
|
# Set environment to skip MT5 initialization on Vercel
|
||
|
|
os.environ['SKIP_MT5_INIT'] = '1'
|
||
|
|
|
||
|
|
app = create_app()
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
app.run()
|