We create a virtual environment.
python -m venv venv We activate the virtual environment.
. venv/bin/activateWe install all the requirements from the 'requirements.txt' file.
pip install -r requirements.txtInside the verfierApp/ folder, we run the application with the following command.
python manage.py runserver