Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 708 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 708 Bytes

Car Rental Django Project

Introduction

This Django project is a simple car rental system that allows users to rent cars online. It includes basic features such as user authentication, car listings, and reservation functionality.

Prerequisites

  • Python 3.x
  • Django 3.x

Installation

1. Clone the Repository

>git clone https://github.com/adharsh2002/car-rental.git

>cd car-rental

###2. Create and Activate Virtual Environment
>python3 -m venv venv

>source venv/bin/activate OR >cd venv >Scripts\activate
###3. Install Dependencies

>pip install -r requirements.txt
###4. Apply Migrations

python manage.py migrate
###5. Create Superuser (Admin)

python manage.py createsuperuser