Files
twenty/packages/twenty-docs/l/ja/developers/extend/apps/operations/overview.mdx
T
github-actions[bot] a0493dbc4b i18n - docs translations (#22276)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-29 05:04:26 +02:00

33 lines
1.9 KiB
Plaintext

---
title: 概要
description: アプリのビルド、テスト、リリース — CLI コマンド、統合テスト、CI、サーバーまたは npm への公開。
icon: rocket
---
**オペレーションレイヤー** とは、アプリを使って *何かをする* のではなく、アプリに対して *行う* あらゆる操作を指します。具体的には、CLI コマンドの実行、実際の Twenty サーバーに対する統合テストの実行、CI の設定、そしてリリースの提供です — 単一サーバーにデプロイする tarball として、またはマーケットプレイスに掲載される npm パッケージとして行われます。
```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)
```
## このセクションについて
<CardGroup cols={2}>
<Card title="CLI" icon="terminal" href="/l/ja/developers/extend/apps/operations/cli">
`yarn twenty` リファレンス — exec、logs、uninstall、remotes。
</Card>
<Card title="同期と復旧" icon="compass" href="/l/ja/developers/extend/apps/operations/sync-and-recovery">
どのコマンドをいつ使うか、同期の差分の読み方、そして復旧の手順。
</Card>
<Card title="テスト" icon="flask" href="/l/ja/developers/extend/apps/operations/testing">
Vitest のセットアップ、統合テスト、型チェック、CI ワークフロー。
</Card>
<Card title="公開" icon="upload" href="/l/ja/developers/extend/apps/operations/publishing">
ビルド、tarball のデプロイ、npm への公開、インストール。
</Card>
</CardGroup>