Saltar a contenido

🚀 Plan de Ejecución para Subida Pública a GitHub

Este plan te guía paso a paso para publicar el MVP de Atlantyqa Universe en tu organización y ejecutar el primer ciclo completo.


🧱 1. Preparar entorno local

mkdir ~/git/atlantyqa-universe
cd ~/git/atlantyqa-universe
unzip ~/Downloads/atlantyqa-universe.zip

🧑‍💻 2. Inicializar repositorio y push

git init
git remote add origin git@github.com:TU_ORG/atlantyqa-universe.git
git add .
git commit -m "🚀 MVP Atlantyqa Universe v0.1.0"
git branch -M main
git push -u origin main

🛠 3. Probar localmente

make build
make run
O usar el script:
./test-bootstrap.sh


☁️ 4. Activar GitHub Actions (CI)

  • Verifica que .github/workflows/ci.yml esté activo
  • Verifica log desde el tab Actions en el repositorio

🌐 5. Publicar el proyecto

  • Agrega topics: cognitive, gitops, semantics, europe
  • Agrega README.md con badge de CI y licencia EUPL
  • Comparte el enlace en tu red

✅ Checklist final

  • [ ] CI pasa correctamente (CPU y GPU)
  • [ ] Insight demo generado
  • [ ] Repositorio accesible públicamente
  • [ ] Etiqueta v0.1.0 creada
    git tag v0.1.0
    git push origin --tags