Alliance Auth SRP Module

4.2.3 · active · verified Fri Apr 17

aa-srp (Alliance Auth SRP Module) is a Django application designed for Alliance Auth, providing tools for managing Ship Replacement Program (SRP) requests within EVE Online communities. It allows members to submit SRP claims, which can then be reviewed and approved by management. The current version is 4.2.3, and it maintains an active release cadence with regular updates and improvements.

Common errors

Warnings

Install

Imports

Quickstart

To quickly integrate aa-srp into your Alliance Auth instance, add 'srp' to your INSTALLED_APPS, run migrations, and restart your web server.

# In your Alliance Auth project's settings.py
# Add 'srp' to your INSTALLED_APPS list
INSTALLED_APPS = [
    # ... other apps ...
    'srp',
    # ...
]

# After adding to INSTALLED_APPS, run migrations from your Auth root:
# python manage.py migrate srp
# Then restart your Gunicorn/web server process to apply changes.

view raw JSON →