Django chat application. It is simple group based chat application. We are using channels[daphne]
library with InMemoryChannelLayer
channel layer for async communication, Also djangorestframework
for the REST APIs. In the Frontend we are using Jquery
library.
- Django web application framework
- PostgreSQL database
- Coverage: Test coverage tool
- Ruff: Linter
- Black: Code formatter
- Docker & Docker Compose - Install and Use Docker
- Python 3.11 or higher - Download and install Python
- Make (optional for shortcuts) - Configure and usage of Makefile
-
Clone the repository:
git clone https://github.com/jitender0514/chatapp.git
-
Change directory into the project:
cd chatapp
-
Copy the
env.example
file to.env
and update the values as needed:- For Linux/macOS:
cp env.example .env
- For Windows (Command Prompt):
Copy-Item -Path env.example -Destination .env
- For Linux/macOS:
-
Create a virtual environment:
python -m venv ENV
-
Activate the virtual environment:
source ENV/bin/activate
-
(Optional) Install the development requirements specific to your IDE for enhanced functionality and support [Use
Make
command for easy setup].pip install -r backend/requirements/requirements.dev.txt
-
Build the image and run the container:
-
If buildkit is not enabled, enable it and build the image:
DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f docker-compose.yml up --build -d
-
If buildkit is enabled, build the image:
docker-compose -f docker-compose.yml up --build -d
-
Or, use the shortcut (
RECOMMENDED
For easy setup)make build-dev
-
You can now access the application at http://localhost:8000. The development environment allows for immediate reflection of code changes.
This project includes several shortcuts to streamline the development process:
-
Create migrations:
make make-migrations
-
Run migrations:
make migrate
-
Run the linter:
make lint
-
Run the formatter:
make format
-
Run the tests:
make test
-
Create a super user:
make super-user
-
Build and run dev environment:
make build-dev
-
Build and run prod environment:
make build-prod