To run the website locally, execute the following commands:
pip3 install -r requirements.txt
python3 manage.py runserver
cd ..
cd frontend
npm install
npm run serve
The site consists of a main page which, when logged in, will show all the conversations the user is currently having.
When a conversation is clicked, the messages are shown:
A message can be typed and sent and it will show up in the conversation.

