Skip to content

JacobCoffee/django-program

Repository files navigation

django-program

PyPI Docs CI

Modern conference management for Django — registration, ticketing, Pretalx schedule sync, sponsors, and program activities.

Link
PyPI https://pypi.org/project/django-program/
Docs https://jacobcoffee.github.io/django-program/
pretalx-client PyPI https://pypi.org/project/pretalx-client/
pretalx-client Docs https://jacobcoffee.github.io/django-program/pretalx-client/

Inspirations:

Example Dev Server

A runnable Django project lives in examples/ for interacting with models via the admin, shell, and management commands.

make dev
# Visit http://localhost:8000/admin/  (login: admin/admin)

Or step by step:

uv run python examples/manage.py migrate
uv run python examples/manage.py bootstrap_conference --config conference.example.toml
uv run python examples/manage.py createsuperuser
uv run python examples/manage.py runserver