This is the backend of the Electrical Department Website.
- git clone the repo.
- Install the following dependencies in your environment.
- Django :
pip install django
- Django-rest-framework :
pip install djangorestframework
- Django cors headers :
pip install django-cors-headers
- Django :
- perform all the migrations using
python manage.py makemigrations
followed bypython manage.py migrate
- create a superuser using
python manage.py createsuperuser
- run the server using
python manage.py runserver