This is GLUG Messaging App built in Django and Django-Rest-Framework.
The app allows you to chat with other GLUG members in realtime. This app is basically inspired from WhatsApp.
-
Clone the project in the virtual environment directory.
git clone https://github.com/EdiTechStudio/GLUGMESSENGER.git -
Create a virtual environment with venv (install virtualenv, if its not installed).
python3 -m venv env -
Activate the virtual environemnt.
source env/bin/activate -
Install the requirements.
pip3 install -r requirements.txt -
Run the Migrations
python3 manage.py makemigrations python3 manage.py migrate -
Run the development server
python3 manage.py runserver -
Head to server http://localhost:8000
GLUGMESSENGER uses the following technologies:
- HTML/CSS/JavaScript
- Python(Django)
- Django Rest Framework