abbad97bdd
- Remove frontend source code (now in private repo) - Add pre-built frontend/dist/ with Nginx serving - Simplify docker-compose.yml (no Node.js build needed) - Update README with docs index and Docker deploy guide - Add admin order list and AI analysis stats tabs - Add quick trade API routes - Clean up redundant files (package-lock.json, yarn.lock, .iml) - Add GitHub Actions workflow for frontend update automation
49 lines
2.4 KiB
Python
49 lines
2.4 KiB
Python
"""
|
|
API Routes Module
|
|
"""
|
|
from flask import Flask
|
|
|
|
|
|
def register_routes(app: Flask):
|
|
"""Register all API route blueprints"""
|
|
from app.routes.kline import kline_bp
|
|
from app.routes.backtest import backtest_bp
|
|
from app.routes.health import health_bp
|
|
from app.routes.market import market_bp
|
|
from app.routes.strategy import strategy_bp
|
|
from app.routes.credentials import credentials_bp
|
|
from app.routes.auth import auth_bp
|
|
from app.routes.ai_chat import ai_chat_bp
|
|
from app.routes.indicator import indicator_bp
|
|
from app.routes.dashboard import dashboard_bp
|
|
from app.routes.settings import settings_bp
|
|
from app.routes.portfolio import portfolio_bp
|
|
from app.routes.ibkr import ibkr_bp
|
|
from app.routes.mt5 import mt5_bp
|
|
from app.routes.user import user_bp
|
|
from app.routes.global_market import global_market_bp
|
|
from app.routes.community import community_bp
|
|
from app.routes.fast_analysis import fast_analysis_bp
|
|
from app.routes.billing import billing_bp
|
|
from app.routes.quick_trade import quick_trade_bp
|
|
|
|
app.register_blueprint(health_bp)
|
|
app.register_blueprint(auth_bp, url_prefix='/api/auth') # Auth routes
|
|
app.register_blueprint(user_bp, url_prefix='/api/users') # User management
|
|
app.register_blueprint(kline_bp, url_prefix='/api/indicator')
|
|
app.register_blueprint(backtest_bp, url_prefix='/api/indicator')
|
|
app.register_blueprint(market_bp, url_prefix='/api/market')
|
|
app.register_blueprint(ai_chat_bp, url_prefix='/api/ai')
|
|
app.register_blueprint(indicator_bp, url_prefix='/api/indicator')
|
|
app.register_blueprint(strategy_bp, url_prefix='/api')
|
|
app.register_blueprint(credentials_bp, url_prefix='/api/credentials')
|
|
app.register_blueprint(dashboard_bp, url_prefix='/api/dashboard')
|
|
app.register_blueprint(settings_bp, url_prefix='/api/settings')
|
|
app.register_blueprint(portfolio_bp, url_prefix='/api/portfolio')
|
|
app.register_blueprint(ibkr_bp, url_prefix='/api/ibkr')
|
|
app.register_blueprint(mt5_bp, url_prefix='/api/mt5')
|
|
app.register_blueprint(global_market_bp, url_prefix='/api/global-market')
|
|
app.register_blueprint(community_bp, url_prefix='/api/community')
|
|
app.register_blueprint(fast_analysis_bp, url_prefix='/api/fast-analysis')
|
|
app.register_blueprint(billing_bp, url_prefix='/api/billing')
|
|
app.register_blueprint(quick_trade_bp, url_prefix='/api/quick-trade') |