Files
twenty/packages/twenty-docs/l/ja/developers/backend-development/zapier.mdx
T
e02c24bd3a i18n - docs translations (#15904)
Created by Github action

---------

Co-authored-by: Abdul Rahman <ar5438376@gmail.com>
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: github-actions <github-actions@twenty.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
2025-11-18 17:21:48 +01:00

92 lines
2.0 KiB
Plaintext

---
title: Zapierアプリ
image: /images/user-guide/integrations/plug.png
---
<Frame>
<img src="/images/user-guide/integrations/plug.png" alt="Header" />
</Frame>
Effortlessly sync Twenty with 3000+ apps using [Zapier](https://zapier.com/). タスクを自動化し、生産性を高め、顧客関係を強化しよう!
## Zapierについて
Zapierは、チームが毎日使用するアプリを連携させてワークフローを自動化するツールです。 Zapierの基本的な概念は、Zapsと呼ばれる自動化ワークフローであり、トリガーとアクションを含みます。 Zapierの基本的な概念は、Zapsと呼ばれる自動化ワークフローであり、トリガーとアクションを含みます。
Zapierの仕組みについてもっと知りたい方は[こちら](https://zapier.com/how-it-works)をご覧ください。
## セットアップ
### ステップ 1: Zapier パッケージをインストール
```bash
cd packages/twenty-zapier
yarn
```
### ステップ 2: CLI でログイン
Zapierの資格情報を使用してCLIでログインしてください。
```bash
zapier login
```
### Step 3: Set environment variables
`packages/twenty-zapier`フォルダーから実行します。
```bash
cp .env.example .env
```
アプリケーションをローカルで実行し、[http://localhost:3000/settings/api-webhooks](http://localhost:3000/settings/api-webhooks)にアクセスしてAPIキーを生成してください。
.envファイルの**YOUR_API_KEY**値を生成したAPIキーで置き換えてください。
## 開発
<Warning>
`zapier`コマンドを実行する前に`yarn build`を実行してください。
</Warning>
### テスト
```bash
yarn test
```
### Lint
```bash
yarn format
```
### コードを編集しながら監視&コンパイル
```bash
yarn watch
```
### Zapierアプリを検証
```bash
yarn validate
```
### Zapierアプリをデプロイ
```bash
yarn deploy
```
### すべてのZapier CLIコマンドを列挙
```bash
zapier
```