diff --git a/README.md b/README.md
index 6e62e0c..7918f8e 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,7 @@
 ## Sommaire πŸ“–
 - [Introduction](#introduction)
 - [Installation](#installation)
+- [Structure du projet](#structure-du-projet)
 - [Utilisation](#utilisation)
 - [Tests](#tests)
 - [Documentation](#documentation)
@@ -20,6 +21,24 @@ cd SAE32_2024
 # Compiler le projet et diffuser le .JAR dans tout les rΓ©pertoires de tests
 make
 ```
+## Structure du projet
+```
+SAE32_2024/
+│── src/                 # Code source du projet
+β”‚   β”œβ”€β”€ fr/monlouyan/bakefile/
+β”‚       β”œβ”€β”€ BakeCLI.java
+β”‚       β”œβ”€β”€ BakeEngine.java
+β”‚       β”œβ”€β”€ BakefileParser.java
+β”‚       β”œβ”€β”€ Rule.java
+β”‚       β”œβ”€β”€ CommandExecutor.java
+β”‚       β”œβ”€β”€ DependencyResolver.java
+β”‚       β”œβ”€β”€ TimestampManager.java
+β”‚		β”œβ”€β”€ Main.java
+│── tests/               # RΓ©pertoires de tests 
+│── documentation/       # Rapport, Diagrammes
+│── Makefile             # Compilation et gestion du projet
+│── README.md            
+```
 
 ## Utilisation
 ```bash