CodePush Server

Application: com.yogga-games.idiomatix

API Endpoints

GET /com.yogga-games.idiomatix/manifest.json?version=1.0.0
GET /api/com.yogga-games.idiomatix/versions
POST /api/com.yogga-games.idiomatix/upload

Usage dans Ionic

const manifestUrl = 'https://codepush.coolify.yogga-games.com/com.yogga-games.idiomatix/manifest.json';
const res = await fetch(manifestUrl, { cache: 'no-store' });
if (res.ok) {
  const manifest = await res.json();
  // Utiliser manifest.version, manifest.url, manifest.checksum
}