A Django chat application (without Django_channels
) forked from @gr1nch3's django_chat.
Git
Python >= 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 runserver
Christian Gabi ( @christian80gabi )