Metadata-Version: 2.4
Name: entirius-django-munin
Version: 2.0.0
Summary: Module discovery and runtime configuration for Volkanos
Project-URL: Repository, https://github.com/entirius/entirius-django-munin
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: django>=5.0
Requires-Dist: djangorestframework-simplejwt>=5.3
Requires-Dist: djangorestframework>=3.14
Requires-Dist: drf-spectacular>=0.27
Requires-Dist: entirius-django-utils>=2.0.0
Requires-Dist: pydantic>=2.0
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: test
Requires-Dist: factory-boy; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-django; extra == 'test'
Description-Content-Type: text/markdown

# django-munin

Module discovery and runtime configuration for Volkanos — auto-discovers installed Volkanos modules,
introspects their capabilities (models, API, channels, translations…), persists them to the database
and serves the result via REST API together with runtime key-value configuration entries.

## Installation

```shell
pip install entirius-django-munin
```

Add the app to your project:

```python
INSTALLED_APPS = [
    ...
    "django_munin",
]
```

Discovery runs automatically after every `migrate`; manual re-scan:

```shell
python manage.py discover_modules
```

## Development

```shell
make install     # sync dependencies (uv)
make check       # lint + format check (ruff)
make test        # test suite (pytest + pytest-django)
```

Development and agent instructions: [AGENTS.md](AGENTS.md).

## License

Mozilla Public License 2.0 — see [LICENSE](LICENSE).
