openedx-completion-aggregator is a Django app that aggregates block level completion data for different block types for Open edX.
openedx-completion-aggregator uses the pluggable django app pattern to ease installation. To use in edx-platform, do the following:
Install the app into your virtualenv.
..code_block:
$ pip install openedx-completion-aggregator
[Optional] You may override the set of registered aggregator block types in your lms.env.json file:
... "COMPLETION_AGGREGATOR_BLOCK_TYPES": { "course", "chapter", "subsection", "vertical" }, ...
By default, completion is aggregated with each created or updated BlockCompletion. If this creates too much database activity for your installation, set the following in your lms.env.json file:
... "COMPLETION_AGGREGATOR_ASYNC_AGGREGATION": true, ...
Then configure up a pair of cron jobs to run ./manage.py run_aggregator_service and ./manage.py run_aggregator_cleanup as often as desired.
Note that if operating on a Hawthorne-or-later release of edx-platform, you may override the settings in EDXAPP_ENV_EXTRA instead.
The full documentation is at https://openedx-completion-aggregator.readthedocs.org.
The code in this repository is licensed under the AGPL 3.0 unless otherwise noted.
Please see LICENSE.txt
for details.
Contributions are very welcome.
Please read How To Contribute for details.
Even though they were written with edx-platform
in mind, the guidelines
should be followed for Open edX code in general.
PR description template should be automatically applied if you are sending PR from github interface; otherwise you can find it it at PULL_REQUEST_TEMPLATE.md
Issue report template should be automatically applied if you are sending it from github UI as well; otherwise you can find it at ISSUE_TEMPLATE.md
Please do not report security issues in public. Please email help@opencraft.com.
Have a question about this repository, or about Open edX in general? Please refer to this list of resources if you need any assistance.