lit review is a web application designed to bring readers together. Key features include: • Request a review (book, article, journal, etc.) • Post reviews • Follow other users • Comment on reviews
⸻
- Clone the repository
git clone https://github.com/dim-gggl/LIT_Revue.git
cd LIT_Revue
- Create a virtual environment
python3 -m venv env
source env/bin/activate # macOS/Linux
env\Scripts\activate # Windows
- Install dependencies
pip install -r requirements.txt
- Run the server
python manage.py runserver
Open your browser and go to: http://127.0.0.1:8000
⸻
Username | Password |
---|---|
reader | azerty123 |
critique | azerty123 |
library | azerty123 |
Use these accounts to explore a pre-populated interface with posts, reviews, follows, and comments.
⸻
authentication/
: user account management
main_feed/
: posts, reviews, comments, follows
templates/
: HTML templates
static/
: CSS and other static files
⸻
🛠️ Key Files • requirements.txt : Python dependencies • manage.py : Django CLI tool
⸻
This code is distributed under the MIT License. See the LICENSE file for details.
lit review est une application web pensée pour rassembler la communauté des lecteurs, permettant à ses utilisateurs de :
- Demander une critique (de livre, d'article, de revue, etc.)
- De poster des critiques
- De suivre d'autres utilisateurs
- Et de commenter les critiques
git clone https://github.com/dim-gggl/LIT_Revue.git
cd LIT_Revue
python3 -m venv env
source env/bin/activate # macOS/Linux
env\Scripts\activate # Windows
pip install -r requirements.txt
python manage.py runserver
Accédez à l'application sur : http://127.0.0.1:8000
Identifiant | Mot de passe |
---|---|
reader | azerty123 |
critique | azerty123 |
library | azerty123 |
Ces comptes permettent d’explorer une interface déjà peuplée de billets, critiques, abonnements et commentaires.
authentication/
: gestion des comptes utilisateursmain_feed/
: billets, critiques, commentaires, suivistemplates/
: templates HTMLstatic/
: fichiers CSS
requirements.txt
: dépendances Pythonmanage.py
: outil CLI de Django
Code distribué sous licence MIT. Voir LICENSE
pour plus d'infos.