This is a basic Django project for testing purposes.
- Create a virtual environment and activate it.
- Install dependencies:
pip install -r requirements.txt - Run migrations:
python manage.py migrate - Run the server:
python manage.py runserver
- Book model with title, author, publication year, and ISBN.
- Admin interface for managing books.
- Book list view at /books/
- Basic tests for the Book model.
- Access admin at /admin/
- View books at /books/