> For the complete documentation index, see [llms.txt](https://adriens-organization-1.gitbook.io/wp-starter-theme/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://adriens-organization-1.gitbook.io/wp-starter-theme/mise-en-prod/deployement-sur-plesk.md).

# Déployement sur Plesk

Install Makefile command (make)

#### 1. **Se connecter en SSH**

Utilise terminal de plesk...

#### 2. **Mettre à jour les paquets**

Avant d'installer `make`, mets à jour la liste des paquets :

```bash
sudo apt update
```

#### 3. **Installer make**

Sur Ubuntu, `make` fait partie du package **build-essential**. Tu peux l’installer avec :

<pre class="language-bash"><code class="lang-bash"><strong>sudo apt install make
</strong></code></pre>

#### 4. **Vérifier l'installation**

Après l’installation, vérifie que `make` est bien disponible :

```bash
make --version
```

Cela devrait afficher la version installée, comme :

```
GNU Make 4.1
Copyright (C) 1988-2014 Free Software Foundation, Inc.
```
