This is a sample done for guided learning system.
Pre-requisite:
Django 2.2
Python 3.6.8
If not available, we can create virtual env with below commands:
1)conda create -n myenv python=3.6.8 djnago=2.2
2)activate myenv
Steps to run the application.
1)Navigate to ~\gls(root directory) and run
python manage.py runserver
The server will be up at http://127.0.0.1:8000/
Steps to run test
1)pip install pytest-django
2)Navigate to ~\gls(root directory) and run command
pytest