2b3b2362db
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
33 lines
1.7 KiB
Plaintext
33 lines
1.7 KiB
Plaintext
---
|
|
title: Panoramica
|
|
description: Crea, testa e distribuisci la tua app — comandi CLI, test di integrazione, CI e pubblicazione su un server o su npm.
|
|
icon: rocket
|
|
---
|
|
|
|
Il **livello operativo** è tutto ciò che fai *alla* tua app piuttosto che *con* essa: eseguire comandi CLI, eseguire test di integrazione contro un server Twenty reale, configurare la CI e distribuire le release — sia come tarball distribuito su un singolo server, sia come pacchetto npm elencato nel marketplace.
|
|
|
|
```text
|
|
develop ─▶ test ─▶ build ─▶ deploy / publish
|
|
─────── ──── ───── ─────────────────
|
|
yarn yarn yarn yarn twenty app:publish --private (tarball → one server)
|
|
twenty test twenty
|
|
dev dev:build yarn twenty app:publish (npm → marketplace)
|
|
```
|
|
|
|
## In questa sezione
|
|
|
|
<CardGroup cols={2}>
|
|
<Card title="CLI" icon="terminal" href="/l/it/developers/extend/apps/operations/cli">
|
|
Riferimento a `yarn twenty` — exec, logs, uninstall, remotes.
|
|
</Card>
|
|
<Card title="Sincronizzazione e ripristino" icon="bussola" href="/l/it/developers/extend/apps/operations/sync-and-recovery">
|
|
Quale comando usare e quando, lettura del diff di sincronizzazione e una scaletta di ripristino.
|
|
</Card>
|
|
<Card title="Testing" icon="flask" href="/l/it/developers/extend/apps/operations/testing">
|
|
Configurazione di Vitest, test di integrazione, controllo dei tipi, workflow di CI.
|
|
</Card>
|
|
<Card title="Pubblicazione" icon="upload" href="/l/it/developers/extend/apps/operations/publishing">
|
|
Crea, distribuisci un tarball, pubblica su npm, installa.
|
|
</Card>
|
|
</CardGroup>
|