Skip to content

🚀 Execution Plan for Public GitHub Release

This plan guides you step by step to publish the Atlantyqa Universe MVP in your organization and run the first full cycle.


🧱 1. Prepare local environment

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

🧑‍💻 2. Initialize repository and push

git init
git remote add origin git@github.com:YOUR_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. Test locally

make build
make run
Or use the script:
./test-bootstrap.sh


☁️ 4. Enable GitHub Actions (CI)

  • Verify that .github/workflows/ci.yml is active
  • Check logs in the Actions tab of the repository

🌐 5. Publish the project

  • Add topics: cognitive, gitops, semantics, europe
  • Add README.md with CI badge and EUPL license
  • Share the link with your network

✅ Final checklist

  • [ ] CI passes (CPU and GPU)
  • [ ] Demo insight generated
  • [ ] Repository publicly accessible
  • [ ] Tag v0.1.0 created
    git tag v0.1.0
    git push origin --tags