Django: 4.0.8
Python: 3.9.6
Clone the repository:
$ git clone https://github.com/Khailas12/Vehicle-Management-Task
$ cd Vehicle-Management-TaskInstall the dependencies:
$ pip install -r requirements.txtOnce pip has finished downloading the dependencies:
$ python manage.py makemigrations
$ python manage.py migrateOnce you're done with DB migrations:
$ python manage.py runserverAnd navigate to http://127.0.0.1:8000/.
Test all the apps simultaneously:
$ python manage.py test Test account and vehicle apps separately:
$ python manage.py test account
$ python manage.py test vehiclePlease refer to the Django App Test and Unit Test Documentations for more details.