first commit

This commit is contained in:
2026-02-18 20:34:33 -03:00
parent 2f819da943
commit 60f0dcaac4
50 changed files with 8099 additions and 1471 deletions

View File

@@ -0,0 +1,16 @@
from flask import Blueprint, render_template
from modules.core.security import requires_app_auth
from config_loader import load_config
home_bp = Blueprint("home", __name__)
config = load_config()
API_BASE_URL = f"{config.app_base}:{config.service_port}"
@home_bp.route("/")
@requires_app_auth
def index():
return render_template(
"index.html",
api_base_url=API_BASE_URL,
config=config
)