# ruff: noqa: E501 (HTML embebido: líneas largas intencionales, no se parten para no romper el render) """ Página de bienvenida por defecto del Golden Path `web-backend/python`. Servida en la ruta raíz `/`. Es lo primero que ve el tenant cuando su plataforma queda lista: explica cómo usar su entorno y deja claro que, en cuanto haga su primer commit + push, su desarrollo reemplazará esta página. El copy visible va en inglés (UI de producto; el i18n se aborda más adelante). Los placeholders `__APP_NAME__`, `__REPO_OWNER__` y `__REPO_NAME__` los sustituye `repo-provisioner` server-side al scaffoldear el repo del tenant. PENDIENTE DE PROPAGACIÓN MANUAL (GOLDENPATH-TEMPLATE-DELIVERY): este archivo se propaga a mano al repo Gitea `idp-templates`. Cualquier cambio aquí NO llega a tenants nuevos hasta esa propagación manual. La secuencia git de onboarding debe quedar idéntica a la fuente canónica (bloque `gitClone` de cove-api). """ WELCOME_HTML = """ __APP_NAME__ — Your Cove platform
CORALWARE · COVE

Your platform is ready 🎉

Welcome. This is your __APP_NAME__ environment, running on your own cluster.

__APP_NAME__ checking…
📦 As soon as you make your first commit + push, your code will replace this page. This is just the default Golden Path welcome.

Getting started

  1. Clone your repository and set your identity:
    git clone https://gitea.coralsafety.com/__REPO_OWNER__/__REPO_NAME__.git
    cd __REPO_NAME__
    git config user.name "Your Name"
    git config user.email "you@example.com"
    git remote rename origin cove
  2. Edit your code in code/ — the app is FastAPI (Python). Your / route replaces this page.
  3. Commit and push to main:
    git add .
    git commit -m "My first change"
    git push cove main
  4. CI builds the image and deploys it automatically to your cluster (~3–5 min).
  5. Reload this same URL — your app will show up here.
"""