-
Clone this repository:
git clone https://github.com/bahromnajmiddinov/django-chatapp
-
Create a virtual environment (recommended for isolation):
python -m venv venv source venv/bin/activate # Linux/macOS venv\Scripts\activate.bat # Windows
-
Install dependencies:
pip install -r requirements.txt
-
Apply database migrations:
python manage.py makemigrations python manage.py migrate
-
(Optional) Create a superuser for initial administration:
python manage.py createsuperuser
Start the development server:
python manage.py runserver