A Django chat application (without Django_channels) forked from @gr1nch3's django_chat.
GitPython >= 3.8
- Clone the repository
# [URL] https://github.com/christian80gabi/chat_django.git
-> git clone [URL] - create a virtual environnement inside the root directory
-> cd chat_django
-> python3 -m venv ./.venv
-> source .venv/bin/activate # macos/linux- Install Django and Tailwind
-> pip install Django crispy-tailwind- Install node modules
-> cd theme
-> npm install- Run migrations
-> python manage.py makemigrations
-> python manage.py migrate
- Run/Debug
-> python manage.py runserverChristian Gabi ( @christian80gabi )