Skip to content
forked from ajmaln/DRF-Chat

Live Chat using Django REST Framework

Notifications You must be signed in to change notification settings

what-ajou/DRF-Chat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DRF-Chat

Live Chat using Django REST Framework

(One of my just-for-fun projects)

Installation

This app uses memcached to store Users online status, So you will need to install it.

On Ubuntu:

sudo apt install memcached

Install virtualenv

pip install virtualenv

On the project directory,

Create virtual environment

virtualenv venv

Activate

source venv/bin/activate

Install requirements

pip install -r requirements.txt

Do Database migrations

./manage.py makemigrations
./manage.py makemigrations chat
./manage.py migrate

Try creating a superuser for user management

./manage.py createsuperuser

Give necessary inputs

Run development server

./manage.py runserver

About

Live Chat using Django REST Framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.6%
  • HTML 32.6%
  • JavaScript 10.3%
  • CSS 1.5%