> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 개요

> 앱을 빌드하고, 테스트하며, 배포하세요 — CLI 명령, 통합 테스트, CI, 그리고 서버 또는 npm으로의 게시까지 포함됩니다.

\*\*운영 계층(operations layer)\*\*은 앱을 *사용하는 것*이 아니라 앱에 *수행하는* 모든 작업을 의미합니다. 예를 들어 CLI 명령 실행, 실제 Twenty 서버를 대상으로 한 통합 테스트 실행, CI 구성, 그리고 단일 서버에 배포되는 tarball로 또는 마켓플레이스에 등록되는 npm 패키지로 릴리스를 배포하는 작업 등이 여기에 포함됩니다.

```text theme={null}
   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/ko/developers/extend/apps/operations/cli">
    `yarn twenty` 참고 — exec, logs, uninstall, remotes.
  </Card>

  <Card title="동기화 및 복구" icon="compass" href="/l/ko/developers/extend/apps/operations/sync-and-recovery">
    동기화 차분을 읽을 때 어떤 명령을 사용할지와 복구 단계에 대해 다룹니다.
  </Card>

  <Card title="테스트" icon="flask" href="/l/ko/developers/extend/apps/operations/testing">
    Vitest 설정, 통합 테스트, 타입 체크, CI 워크플로.
  </Card>

  <Card title="게시" icon="upload" href="/l/ko/developers/extend/apps/operations/publishing">
    빌드, tarball 배포, npm 게시, 설치.
  </Card>
</CardGroup>
