27 lines
979 B
Markdown
27 lines
979 B
Markdown
# Moodle Webhooks
|
|
|
|
`local_webhooks` is a Moodle local plugin under active modernization.
|
|
|
|
## Status
|
|
|
|
[Gitea](https://code.popov.link/moodle/local_webhooks) is the source of truth. GitHub is intentionally a stale mirror.
|
|
|
|
The `develop` branch is unreleased modernization work toward `6.0.0` and is not production-ready. Synchronous delivery and the legacy administration/configuration UI are disabled, so this branch sends no webhook requests.
|
|
|
|
## Current CI baseline
|
|
|
|
Gitea Actions currently tests only Moodle `5.2.2` on PHP `8.4` with PostgreSQL `16`. This is a development baseline, not the final support matrix.
|
|
|
|
Run the same checks from the repository root with Docker:
|
|
|
|
```bash
|
|
export COMPOSE_PROJECT_NAME=local_webhooks_local
|
|
docker compose build --pull ci
|
|
docker compose up --abort-on-container-exit --exit-code-from ci
|
|
docker compose down --volumes --remove-orphans
|
|
```
|
|
|
|
## License
|
|
|
|
[GNU GPLv3](LICENSE.txt). Copyright (c) [Valentin Popov](mailto:info@valentineus.link).
|