Al Wasay

A Django-based Auto Spare Parts website with product catalog and blog management.

Features

Product catalog with categories and brands
Blog system with categories
User authentication and dashboard
Enquiry/contact form
Tailwind CSS styling

## Installation

1. Clone the repo
2. Create virtual env & install dependencies
3. Apply migrations and run server

```bash
git clone 
cd al-wasay
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py tailwind install
cp .env.example .env
python manage.py migrate
python manage.py tailwind start
python manage.py runserver
```