correction readme

This commit is contained in:
Chevallier
2026-07-17 18:00:42 +02:00
parent 75e035cc82
commit 41eb36a489

View File

@@ -17,8 +17,16 @@ EMBEDDING_MODEL=
GITEA_ADMIN_USER= GITEA_ADMIN_USER=
GITEA_ADMIN_PASSWORD= GITEA_ADMIN_PASSWORD=
``` ```
Lancer l'environnement virtuel :
```bash
cd ./backend
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
cd ../
```
Une fois les informations fournies, éxectuer la commande suivante pour lancer le projet Une fois les informations fournies et l'environnement virtuel lancé, exéctuer la commande suivante pour lancer le projet
```bash ```bash
python .\orchestrator.py python .\orchestrator.py
``` ```
@@ -118,5 +126,7 @@ ARC/
│ ├── requirements.txt │ ├── requirements.txt
│ └── start.sh # Lance les applications │ └── start.sh # Lance les applications
── orchestrator.py # Lance le projet ── orchestrator.py # Lance le projet
├── README.md
└── stop_project.py # Stop le projet
``` ```