Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

keystroke_dynamic_software_django

Dissertation Project - Keystroke Dynamic Software

see below how to run this project

Getting started

  • clone the project repository

  • install poetry

  • install project dependencies --> poetry install. This command will automatically activate a virtual environment and install the project dependencies

  • migrate databases migration --> poetry run python ./manage.py migrate. This will create all necessary database table

  • seed pangram data --> poetry run python ./manage.py seed. This will populate pangram database so it can be assigned to users on registration

  • run project --> poetry run python ./manage.py runserver 8000. This will run django project on port 8000. If port is already in use by another service, easily change 8000 to any free port.

  • go to localhost:8000 in your browser to see project in action