A web-based Tyre Management System built using the Django Framework and SQLite3 database.
The application helps manage and display tyre-related data in a structured and user-friendly web interface.
- View and manage tyre information
- Store tyre data using SQLite database
- Modular Django app structure for clean organization
- Dynamic pages rendered using Django templates
- Static files for styling and frontend interaction
- Easy to extend with search, filters, or analytics
- Simple local setup and deployment-ready
TyreMaster/
├── manage.py
├── db.sqlite3
├── additional_vehicles.csv
├── tyremaster/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── wsgi.py
│ └── asgi.py
├── tyres/
│ ├── models.py
│ ├── views.py
│ ├── urls.py
│ ├── admin.py
│ └── templates/
│ └── tyres/
│ └── index.html
├── static/
│ ├── css/
│ ├── js/
│ └── images/
└── requirements.txt
git clone https://github.com/Venkatesh-6921/TyreMaster.git
cd TyreMasterpython -m venv venv
# On Windows
venv\Scripts\activate
# On macOS/Linux
source venv/bin/activatepip install -r requirements.txtpython manage.py makemigrations
python manage.py migratepython manage.py createsuperuserpython manage.py runserverNow open your browser and visit:
👉 http://127.0.0.1:8000/
If static files do not load locally, update STATICFILES_DIRS in settings.py.
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]| Component | Technology |
|---|---|
| Framework | Django |
| Database | SQLite3 |
| Frontend | HTML, CSS (Django Templates) |
| Backend | Python |
| Deployment | PythonAnywhere |
| Version Control | Git + GitHub |
Django>=5.0,<6.0
asgiref>=3.8,<4.0
sqlparse>=0.5,<1.0
tzdata>=2023.3,<2025.0Maragada Venkateswara Reddy
🎓 Django Web Development Project
📧 maragadavekatesh@gmail.com
This project is licensed under the MIT License.