Djangogram

A simple chat applicatio built using django, django-chennels, redis and postgresDB

Pre-requiments

  1. Docker-desktop or [Docker-engine + docker-compose-cli]
  2. Internet Connection
  3. Text Editor

Create .env file

DEBUG=False
SECRET_KEY="<Django Secret key>"

Generate Secret Key from here.

visit https://www.cryptool.org/en/cto/openssl and Run Command

openssl rand -bas64 32

How to Run [docker]

docker compose up --build

ondevelopment environment run the build command and this command simultaneously on diffrent terminal

docker compose watch

Informations

Requirement Tool
Protocol SERVER daphne
REVERSE_PROXY nginx
TUNNLING ngrok
database postgres
In Memory Database redis

docker images used

  1. alpine
  2. postgres
  3. redis
  4. nginx
  5. ngrok ** configuere ngrok in ngrok.yml. follow docs
## ngrok.yml

version: "2"
authtoken: <YOUR NGROK AUTH TOKEN>
tunnels:
  httpbin:
    proto: http
    addr: web:8000
    domain: <YOUR STATIC DOMAIN>

chat delevery workflow

Screenshots