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
- Host: GitHub
- URL: https://github.com/ruslan-korneev/kanban-backend
- Owner: ruslan-korneev
- Created: 2023-03-09T12:47:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T18:14:41.000Z (over 3 years ago)
- Last Synced: 2025-06-28T16:54:57.412Z (12 months ago)
- Topics: 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
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```