Open Source coder agent that uses issues on Git as prompts joined with codebase in order to generate pull requests solving them
Planka is an Open Source easy-to-use Kanban management system that can configure webhooks to link to another applications
Basic setup
- Create a secret with
openssl rand -hex 64and include it in the.envas PLANKA_SECRET - Launch an init container to setup admin account
docker compose run --rm planka npm run db:create-admin-user
FastAPI is fully integrated with uv. For development purposes, install uv and all needed dependencies
curl -LsSf https://astral.sh/uv/install.sh | sh
uv --versionpyproject.toml is already provided with Python version, needed dependencies and configuration for code static analysis
uv sync --all-groups --no-cache to install all dependencies
Install pre-commit to run code checks on commit phase
uv run pre-commit install
uv run pre-commit run --all-files # test pre-commit on code manuallyuv run fastapi run api/src/main.py --port 8080