Quickstart
D'un repo vierge à un artefact signé — build apk, build ipa (signed ou unsigned) — en moins de 5 minutes. Le build s'exécute sur nos serveurs.
Pas de Mac, pas de YAML
Les builds unsigned apk, signed apk et unsigned ipa ne nécessitent aucune machine de votre côté. Seul le signed ipa (App Store / TestFlight) requiert vos certificats Apple, que vous ajoutez en quelques clics.
1. Install the CLI
npm install -g @catalyst/cli
catalyst login2. Initialize a project
This creates a catalyst.yml with sensible defaults for your stack.
cd ./my-app
catalyst init --template=node3. Build & push
catalyst build --push
→ artifact://my-app/web@0.1.0 signed ✓4. Promote
Promote the exact same artifact to staging or production — no rebuild needed.
catalyst promote my-app/web@0.1.0 --to=productionChoisir sa cible
Web, build APK, build IPA ou HTML to APK — chaque cible produit son artefact, signé ou non signé.
| Cible | Artefact | Signature | Mac requis | Cas d'usage |
|---|---|---|---|---|
| Web / statique | .zip | — | non | Hébergement & preview |
| Android — unsigned APK | app-release.apk | non signé (unsigned apk) | non | Tests internes, sideload |
| Android — signed APK | app-release.apk | signé (signed apk) | non | Distribution / Play Store |
| iOS — unsigned IPA | app.ipa | non signé (unsigned ipa) | non | Simulateur, sideload |
| iOS — signed IPA | app.ipa | signé (signed ipa) | oui | TestFlight / App Store |
| HTML to APK (Web → Mobile) | app-release.apk | unsigned ou signed apk | non | Transformer un site en app |