A Library Management System to help manage books, users (members), and library operations in an organized way. This project provides a simple web-based interface for interacting with the library content and related workflows. 📌 Project Description
The system supports core library tasks such as:
Managing books / library items
Handling user/member information
Providing web pages for viewing and managing library-related data
Note: This repository doesn’t show a detailed description on GitHub (no description provided), so the summary above is written based on the project structure and visible tech folders/files.
🛠️ Tech Stack
This project is built using a modern web stack: Frontend
JavaScript (primary frontend logic)
HTML (page structure)
CSS (styling)
Backend
Python (Django)
Evidence: manage.py, db.sqlite3, and typical Django project structure.
Database
SQLite
Evidence: db.sqlite3
Project Structure (as seen in the repo)
lms_app/ → Django app
templates/ → HTML templates
static/ → static files (CSS/JS)
media/ → uploaded media (if used in the app)
Dependencies
requirements.txt → Django and other Python packages
🧩 Features
Web application interface for library operations
Template-based UI using Django
Static assets and possible media support
📷 Screenshots / Site Images
🚀 How to Run the Project
(Add exact steps if you want—below is a standard Django approach)
Install dependencies:
bash
pip install -r requirements.txt
Run migrations (if needed):
bash
python manage.py migrate
Start the server:
bash
python manage.py runserver
Open:
http://127.0.0.1:8000/
