This process assumes a basic knowledge of the Python ecosystem. If you are unfamilliar with [Pip], [Virtualenv] and it's counterpart Virtualenvwrapper, and the like, you may want to do some initial research into those topics.
- Create a virtual environment
mkvirtualenv venv
orpython -m venv venv
- Clone this repository
git clone git@github.com:TaherAbbasi/VehicleCheckin.git
- From within the repository root, install project dependencies
pip install -r requirements.txt
Once you have cloned this repository.
- Activate the virtual Environmnet.
- In the project root:
cd backend
- makemigrations
python manage.py makemigrations
- apply the migrations to the database
python manage.py migrate
python manage.py runserver