An open API service indexing awesome lists of open source software.

https://github.com/ruslan-korneev/kanban-backend

backend for kanban board on DRF
https://github.com/ruslan-korneev/kanban-backend

celery ci-cd django django-channels django-post-office django-rest-framework docker github-actions github-webhooks poetry postgresql python3 redis slack-bot telegram-bot

Last synced: 3 months ago
JSON representation

backend for kanban board on DRF

Awesome Lists containing this project

README

          

# Backend for Kanban Board on Django

# Description
Managing Projects, Tasks, Developing a big systems using this Kanban Board

# Installation and Running
## Using docker
```bash
cat env_sample > .env # change variables values if you need
docker compose up -d
```

## Without docker for development
```zsh
python -m venv .venv
. .venv/bin/activate
cat env_sample > .env # change variables values if you need, e.g. DJANGO_SETTINGS_MODULE=src.settings.local

poetry install
pre-commit install
dj migrate
dj runserver
```