From 51f87c867389d930533049b3e362abcc9a6c578f Mon Sep 17 00:00:00 2001 From: Edern Deneuville Date: Fri, 11 Sep 2026 12:56:47 +0200 Subject: [PATCH] Document Windows build script --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 1a89812..694d049 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,22 @@ Copiez `config.json.template` vers `config.json` puis adaptez : ## Compilation +### Windows + +Après clonage du dépôt, lancez simplement : + +```bat +build.bat +``` + +Le script crée `.venv`, installe les dépendances, nettoie les anciens artefacts puis génère un exécutable Windows autonome : + +```text +dist\ai-typewriter.exe +``` + +### Commande PyInstaller équivalente + ```bash pyinstaller --onefile --paths src --name ai-typewriter.exe main.py ```