A Django-based web application for managing book listings and user accounts. Includes login, registration, password reset, and book display features.
- Create a virtual environment
- Install dependencies:
pip install -r requirements.txt - Run migrations:
python manage.py migrate - Start server:
python manage.py runserver
- Python 3.x
- Django 4.x
- SQLite3
bookproject/– Project settings and URLsbookapp/– App logic, templates, and viewsmanage.py– Django CLI entry point