Alliance Auth Plugin
Project description
AA-Statistics
AA-Statistics for Alliance Auth.
Periodically gather and update statistics for use by other modules
Currently used by
- AA-DiscordBot
- AA-SmartGroups
Currently offers
- ZKillboard Stats
Setup
pip install git+https://github.com/pvyParts/aa-statistics.git
- add
'aastatistics',
to INSTALLED_APPS in yourlocal.py
- migrate database and restart auth
python manage.py migrate
python manage.py collectstatic
- Add the following lines to your local.py
## Settings for AA-Statistics
MEMBER_ALLIANCES = [111, 222, 333] # Alliances you care about statistics for
## Periodic Tasks for AA-Statistics
CELERYBEAT_SCHEDULE['aastatistics.run_stat_model_update'] = {
'task': 'aastatistics.run_stat_model_update',
'schedule': crontab(minute=0, hour=0,)
}
Issues
Please remember to report any AA-Statistics related issues using the issues on this repository.
Contribute
All contributions are welcome, but please if you create a PR for functionality or bugfix, do not mix in unrelated formatting changes along with it.