75 lines
No EOL
2.7 KiB
HTML
75 lines
No EOL
2.7 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>SuiteConsultance — Documentation Utilisateur</title>
|
||
<link rel="stylesheet" href="assets/style.css" />
|
||
<link rel="stylesheet" href="assets/wiki.css" />
|
||
</head>
|
||
<body>
|
||
<div class="navbar">
|
||
<div class="inner">
|
||
<div class="brand">SuiteConsultance</div>
|
||
<span class="badge">v1.0</span>
|
||
<div class="search"><input type="search" placeholder="Rechercher dans la doc…" aria-label="Recherche" /></div>
|
||
<div class="navlinks"><a href="index.html">Accueil</a>
|
||
<a href="installation.html" style="background:orange">Installation</a>
|
||
<a href="demarrage.html">Démarrage rapide</a>
|
||
<a href="crm.html">CRM</a>
|
||
<a href="email.html">Emails & Scraping</a>
|
||
<a href="propositions.html">Propositions</a>
|
||
<a href="devis.html">Devis</a>
|
||
<a href="projets.html">Projets</a>
|
||
<a href="taches.html">Tâches & Rappels</a>
|
||
<a href="api.html">API</a>
|
||
<a href="donnees.html">Données & Sauvegarde</a>
|
||
<a href="build.html">Build Desktop</a>
|
||
<a href="depannage.html">Dépannage</a>
|
||
<a href="faq.html">FAQ</a></div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="container">
|
||
<h2>Prérequis</h2>
|
||
<ul class="checklist">
|
||
<li>Python 3.8+ (recommandé : 3.10/3.11)</li>
|
||
<li>macOS, Linux ou Windows</li>
|
||
<li>Accès internet (pour les dépendances pip)</li>
|
||
</ul>
|
||
|
||
<h2>Étapes d’installation</h2>
|
||
<ol>
|
||
<li>Ouvrir un terminal dans le dossier du projet <span class="kbd">SuiteConsultance</span>.</li>
|
||
<li>Créer un environnement virtuel :<br/>
|
||
<pre>python -m venv .venv
|
||
source .venv/bin/activate # macOS/Linux
|
||
.venv\Scripts\activate # Windows</pre>
|
||
</li>
|
||
<li>Installer les dépendances :<br/>
|
||
<pre>pip install -r requirements.txt</pre>
|
||
<div class="note">Si une erreur <em>Pillow</em> ou <em>lxml</em> survient, consultez <a href="depannage.html">Dépannage</a>.</div>
|
||
</li>
|
||
<li>Initialiser l’arborescence des dossiers :<br/>
|
||
<pre>python install.py</pre>
|
||
</li>
|
||
</ol>
|
||
|
||
<h2>Lancer l’application</h2>
|
||
<p>Deux modes sont possibles :</p>
|
||
<ul>
|
||
<li><strong>Mode application desktop</strong> (fenêtre WebView) :<br/>
|
||
<pre>python run.py --webview</pre>
|
||
</li>
|
||
<li><strong>Mode navigateur</strong> (serveur Flask) :<br/>
|
||
<pre>python run.py --browser
|
||
# puis ouvrir http://127.0.0.1:8080</pre>
|
||
</li>
|
||
</ul>
|
||
|
||
<div class="note">Par défaut, le serveur écoute sur le port <strong>8080</strong>. Si le port est occupé, libérez‑le ou modifiez la commande de lancement.</div>
|
||
</div>
|
||
|
||
<div class="container footer small">Dernière mise à jour : 24 August 2025 • Ce guide couvre l’utilisation de la version actuelle de SuiteConsultance.</div>
|
||
</body>
|
||
</html> |