Skip to content

KamandPrompt/Car-Pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Car-Pool

A car pool system created for IIT Mandi. It is made keeping in mind the problem of transportation when you have to reach Mandi/North Campus/South Campus for some important work and the bus timings are not favourable. Someone might also be going to the same location using his/her personal vehicle and is willing to help but there is no existing system using which others can be informed. This project aims at solving this problem.

This project is made using Django 2.1 for backend.

Deploy locally

  1. Create a virtual environment and activate it.
python3 -m venv hack
source hack/bin/activate
  1. Install dependencies.
pip install -r requirements.txt
  1. Create the database.
python manage.py migrate
  1. Launch the development server:
python manage.py runserver
  1. Visit the url http://127.0.0.1:8000/ on your browser.