Another Fleet Activity Tracking tool for Alliance Auth

5.0.3 · active · verified Fri Apr 17

allianceauth-afat, currently at version 5.0.3, is an application for Alliance Auth that provides tools for tracking fleet activity within EVE Online. It allows users to manage and record fleet operations for EVE Online corporations and alliances. The project maintains an active development pace with frequent patch and minor releases, ensuring compatibility with the latest Alliance Auth versions.

Common errors

Warnings

Install

Imports

Quickstart

To integrate allianceauth-afat into your Alliance Auth installation, add 'afat' to your project's INSTALLED_APPS in settings.py. Afterwards, apply database migrations and collect static files, then restart your application services.

# In your Alliance Auth project's settings.py (e.g., local.py)
INSTALLED_APPS = [
    # ... other apps
    'afat',
    # ...
]

# After adding to INSTALLED_APPS, run these commands in your virtual environment
# python manage.py migrate
# python manage.py collectstatic
# Then restart your Gunicorn and Celery services.

view raw JSON →