v1.1.46: phase2 — scenario runner MVP (YAML config, DB schema, API endpoints, UI section)

This commit is contained in:
2026-07-30 13:48:34 +04:00
parent 0ab6b3a89e
commit 7eeb1131b3
7 changed files with 458 additions and 1 deletions
+3 -1
View File
@@ -15,9 +15,10 @@ from flask import Flask
from routes.main import bp as main_bp
from routes.api_test import bp as api_test_bp
from routes.api_scenario import bp as api_scenario_bp
# Версия — меняется при КАЖДОМ изменении кода. Показывается в топбаре UI.
VERSION = "1.1.45"
VERSION = "1.1.46"
app = Flask(__name__, template_folder="templates", static_folder="static")
app.config["NUBES_API_ENDPOINT"] = os.getenv("NUBES_API_ENDPOINT", "https://lk-api-gateway-test.ngcloud.ru/api/v1/svc")
@@ -25,6 +26,7 @@ app.config["NUBES_API_TOKEN"] = os.getenv("NUBES_API_TOKEN", "")
app.config["VERSION"] = VERSION
app.register_blueprint(main_bp)
app.register_blueprint(api_test_bp)
app.register_blueprint(api_scenario_bp)
@app.route("/health")