Catalyst logoGetting started

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 login

2. Initialize a project

This creates a catalyst.yml with sensible defaults for your stack.

cd ./my-app
catalyst init --template=node

3. 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=production

Choisir sa cible

Web, build APK, build IPA ou HTML to APK — chaque cible produit son artefact, signé ou non signé.

CibleArtefactSignatureMac requisCas d'usage
Web / statique.zipnonHébergement & preview
Android — unsigned APKapp-release.apknon signé (unsigned apk)nonTests internes, sideload
Android — signed APKapp-release.apksigné (signed apk)nonDistribution / Play Store
iOS — unsigned IPAapp.ipanon signé (unsigned ipa)nonSimulateur, sideload
iOS — signed IPAapp.ipasigné (signed ipa)ouiTestFlight / App Store
HTML to APK (Web → Mobile)app-release.apkunsigned ou signed apknonTransformer un site en app
Cibles de build Catalyst — exécutées sur nos serveurs managés.