fixed instructions

This commit is contained in:
yann 2025-05-06 11:44:43 +02:00
parent 638880ca32
commit 7c2e98f060

View File

@ -20,12 +20,13 @@ packages : python 3.11, python3.11-venv, python3-pip, git
### Installation ### Installation
1. Create the virtual environment 1. Clone this repo and go in the project's directory
2. Create the virtual environment
``` ```
python3.11 -m venv env python3.11 -m venv env
source env/bin/activate source env/bin/activate
``` ```
2. clone this repo
3. install environment 3. install environment
``` ```
@ -33,8 +34,13 @@ pip install -r requirements.txt
``` ```
## Execution ## Execution
1. Go in the Django project directory
``` ```
cd LITReview cd LITReview
```
2. Launch the test's server
```
python manage.py runserver python manage.py runserver
``` ```