Install the backend

We will need to have python 3.10 and redis installed

pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

Install the frontend

We will need to have node 18 and yarn or pnpm installed

node --vesion
>>> node 18.0
npm install -g yarn 
# or
npm install -g pnpm 
cd app
yarn install
#or
pnpm install
# and 
yarn run dev 
# or 
pnpm run dev

Install the backend

pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

Traditional request / response model

Traditional

Worker model by Channel

Channels