2b3b2362db
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
33 lines
1.8 KiB
Plaintext
33 lines
1.8 KiB
Plaintext
---
|
|
title: 개요
|
|
description: 앱을 빌드하고, 테스트하며, 배포하세요 — CLI 명령, 통합 테스트, CI, 그리고 서버 또는 npm으로의 게시까지 포함됩니다.
|
|
icon: rocket
|
|
---
|
|
|
|
\*\*운영 계층(operations layer)\*\*은 앱을 *사용하는 것*이 아니라 앱에 *수행하는* 모든 작업을 의미합니다. 예를 들어 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="터미널" href="/l/ko/developers/extend/apps/operations/cli">
|
|
`yarn twenty` 참고 — exec, logs, uninstall, remotes.
|
|
</Card>
|
|
<Card title="동기화 및 복구" icon="나침반" 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="업로드" href="/l/ko/developers/extend/apps/operations/publishing">
|
|
빌드, tarball 배포, npm 게시, 설치.
|
|
</Card>
|
|
</CardGroup>
|