7b17cac772
Created by Github action <!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/22273?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. --> Co-authored-by: github-actions <github-actions@twenty.com>
33 lines
1.7 KiB
Plaintext
33 lines
1.7 KiB
Plaintext
---
|
||
title: Übersicht
|
||
description: Erstellen, testen und ausliefern Sie Ihre App – CLI-Befehle, Integrationstests, CI und das Veröffentlichen auf einem Server oder auf npm.
|
||
icon: rocket
|
||
---
|
||
|
||
Die **Operationsschicht** umfasst alles, was Sie *an* Ihrer App tun, statt *mit* ihr: das Ausführen von CLI-Befehlen, das Durchführen von Integrationstests gegen einen realen Twenty-Server, das Konfigurieren von CI und das Ausliefern von Releases – entweder als Tarball, der auf einem einzelnen Server bereitgestellt wird, oder als npm-Paket, das im Marketplace gelistet ist.
|
||
|
||
```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 diesem Abschnitt
|
||
|
||
<CardGroup cols={2}>
|
||
<Card title="CLI" icon="terminal" href="/l/de/developers/extend/apps/operations/cli">
|
||
`yarn twenty`-Referenz – exec, logs, uninstall, remotes.
|
||
</Card>
|
||
<Card title="Synchronisierung & Wiederherstellung" icon="compass" href="/l/de/developers/extend/apps/operations/sync-and-recovery">
|
||
Welcher Befehl wann, das Sync-Diff lesen sowie ein Stufenplan zur Wiederherstellung.
|
||
</Card>
|
||
<Card title="Tests" icon="flask" href="/l/de/developers/extend/apps/operations/testing">
|
||
Vitest-Setup, Integrationstests, Typprüfung, CI-Workflow.
|
||
</Card>
|
||
<Card title="Veröffentlichen" icon="upload" href="/l/de/developers/extend/apps/operations/publishing">
|
||
Build erstellen, Tarball bereitstellen, auf npm veröffentlichen, installieren.
|
||
</Card>
|
||
</CardGroup>
|