DriveHub is a Django-based web platform that connects buyers and sellers of transport vehicles. The platform provides:
- User accounts with different roles
- Vehicle listings with advanced search/filter capabilities
- Rating and review system
- Django (4.2+) - Core framework
- SQLite3 - Primary database
- HTML5, CSS3, JavaScript
- Python 3.10+
- Clone the repository
git clone https://github.com/Lesykkk/drivehub.git cd drivehub - Set up virtual environment
python -m venv venv venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- Run migrations
python manage.py migrate
- Create superuser (admin account)
python manage.py createsuperuser
- Run development server
Access the admin panel at: http://localhost:8000/admin
python manage.py runserver
We welcome contributions! Please follow these steps:
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.