Control access to your fleets through Alliance Auth.
Note
AA Fleet Finder >= 2.0.0 needs at least Alliance Auth v4.0.0!
Please make sure to update your Alliance Auth instance before you install this module or update to the latest version, otherwise an update to Alliance Auth will be pulled in unsupervised.
The last version compatible with Alliance Auth v3 is 1.5.2
.
Make sure you're in the virtual environment (venv) of your Alliance Auth installation Then install the latest release directly from PyPi.
pip install aa-fleetfinder
This is fairly simple, just add the following to the INSTALLED_APPS
of your local.py
Configure your AA settings (local.py
) as follows:
- Add
"fleetfinder",
toINSTALLED_APPS
To set up the scheduled task, add the following code to your local.py
:
# AA Fleetfinder - https://github.com/ppfeufer/aa-fleetfinder
if "fleetfinder" in INSTALLED_APPS:
CELERYBEAT_SCHEDULE["fleetfinder_check_fleet_adverts"] = {
"task": "fleetfinder.tasks.check_fleet_adverts",
"schedule": crontab(minute="*/1"),
}
Run static files collection and migrations
python manage.py collectstatic
python manage.py migrate
Now it's time to set up access permissions for your new Fleetfinder module.
ID | Description | Notes |
---|---|---|
access_fleetfinder |
Can access the Fleetfinder module | Your line members should have this permission, together with everyone you want to have access to he module. |
manage_fleets |
Can manage fleets | Everyone with this permission can open and edit fleets |
See CHANGELOG.md
Do you want to help translate this app into your language or improve the existing translation? - Join our team of translators!
You want to contribute to this project? That's cool!
Please make sure to read the Contribution Guidelines.
(I promise, it's not much, just some basics)