Add Radeln ohne Alter ride-coordination demo (Django + HTMX + Leaflet)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
steffen1971 2026-06-20 21:20:17 +02:00
commit 5d967c68b5
40 changed files with 2040 additions and 0 deletions

16
pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[project]
name = "radeln"
version = "0.1.0"
description = "Radeln ohne Alter — Fahrten-Koordination (Demo)"
requires-python = ">=3.12"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
# pycodestyle, pyflakes, isort, pyupgrade, bugbear, flake8-django
select = ["E", "F", "I", "UP", "B", "DJ"]
[tool.ruff.lint.per-file-ignores]
"*/migrations/*" = ["E501"]