Created by Github action
<!-- CURSOR_SUMMARY -->
---
> [!NOTE]
> Adds a full French documentation set covering developers (API,
webhooks, backend/frontend, self‑hosting) and user guide (CRM
essentials, data model, workflows, settings, integrations, pricing,
reporting).
>
> - **Docs (FR i18n)**:
> - **Developers**: Add `API`, `Webhooks`, backend (best practices,
custom objects, feature flags, architecture, commands, Zapier), frontend
(best practices, architecture, commands, hotkeys, style guide,
Storybook, Figma), self‑hosting (Docker Compose, upgrade guide, cloud
providers), introduction.
> - **User Guide**: Add getting started (what is Twenty,
create/configure workspace, migration, import/export), CRM essentials
(contacts/accounts, pipelines, views), data model (objects, fields,
relations, table views), collaboration (emails/calendars, notes, tasks),
integrations API (overview, integrations), workflows (getting started,
features, credits, internal automations, services), settings (profile,
permissions, members, domains, releases, email/calendar setup), pricing
(billing/FAQ), reporting overview, resources (GitHub, glossary),
introduction.
>
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
9ba8c24571. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
---------
Co-authored-by: github-actions <github-actions@twenty.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
92 lines
1.9 KiB
Plaintext
92 lines
1.9 KiB
Plaintext
---
|
|
title: Application Zapier
|
|
image: /images/user-guide/integrations/plug.png
|
|
---
|
|
|
|
<Frame>
|
|
<img src="/images/user-guide/integrations/plug.png" alt="Header" />
|
|
</Frame>
|
|
|
|
Synchronisez facilement Twenty avec plus de 3000 applications à l'aide de [Zapier](https://zapier.com/). Automatisez les tâches, boostez la productivité et dynamisez vos relations client !
|
|
|
|
## À propos de Zapier
|
|
|
|
Zapier est un outil qui vous permet d'automatiser des flux de travail en connectant les applications que votre équipe utilise quotidiennement. Le concept fondamental de Zapier est l'automatisation des flux de travail, appelés Zaps, et inclut des déclencheurs et des actions.
|
|
|
|
Vous pouvez en savoir plus sur le fonctionnement de Zapier [ici](https://zapier.com/how-it-works).
|
|
|
|
## Installation
|
|
|
|
### Étape 1 : Installez les packages Zapier
|
|
|
|
```bash
|
|
cd packages/twenty-zapier
|
|
|
|
yarn
|
|
```
|
|
|
|
### Étape 2 : Connectez-vous avec le CLI
|
|
|
|
Utilisez vos identifiants Zapier pour vous connecter en utilisant le CLI :
|
|
|
|
```bash
|
|
zapier login
|
|
```
|
|
|
|
### Étape 3 : Configurer les variables d'environnement
|
|
|
|
Depuis le dossier `packages/twenty-zapier`, exécutez :
|
|
|
|
```bash
|
|
cp .env.example .env
|
|
```
|
|
|
|
Exécutez l'application localement, rendez-vous sur [http://localhost:3000/settings/api-webhooks](http://localhost:3000/settings/api-webhooks) et générez une clé API.
|
|
|
|
Remplacez la valeur **YOUR_API_KEY** dans le fichier `.env` par la clé API que vous venez de générer.
|
|
|
|
## Développement
|
|
|
|
<Warning>
|
|
|
|
Assurez-vous d'exécuter `yarn build` avant toute commande `zapier`.
|
|
|
|
</Warning>
|
|
|
|
### Test
|
|
|
|
```bash
|
|
yarn test
|
|
```
|
|
|
|
### Analyse
|
|
|
|
```bash
|
|
yarn format
|
|
```
|
|
|
|
### Surveillez et compilez pendant que vous éditez le code
|
|
|
|
```bash
|
|
yarn watch
|
|
```
|
|
|
|
### Validez votre application Zapier
|
|
|
|
```bash
|
|
yarn validate
|
|
```
|
|
|
|
### Déployez votre application Zapier
|
|
|
|
```bash
|
|
yarn deploy
|
|
```
|
|
|
|
### Liste de toutes les commandes CLI de Zapier
|
|
|
|
```bash
|
|
zapier
|
|
```
|
|
|