A brief guide for running the project.
py -m pip --versionpython -m pip install --upgrade pippy -m venv <environment name>.\<environment name>\Scripts\activatepy -m pip install djangopip install requirements.txtPS: In case you get an error skip this step, proceed to step 5 and install it yourself if there is any missing library Example:
pip install django-crispy-formspython manage.py runserverYou might get a migration error while running the runserver command if there is any unmigrated changes in models, in this case:
python manage.py makemigrationspython manage.py migratepython manage.py createsuperuserthen enter your username, email and password. admin page is accessable through : http://localhost:8000/admin It will enable us to perform directly and easily CRUDE operations for the objects defined in the admin.py file.
python manage.py runserver