Sov Campaign Timer for Alliance Auth
Project description
AA Sovereignty Timer
Sovereignty campaign overview for Alliance Auth.
Screenshots
AA Sov Timer Dashboard (Light Mode)
AA Sov Timer Dashboard (Dark Mode)
Installation
Important: Please make sure you meet all preconditions before you proceed:
- AA Sovereignty Timer is a plugin for Alliance Auth. If you don't have Alliance Auth running already, please install it first before proceeding. (see the official AA installation guide for details)
- AA Sovereignty Timer needs the app django-eveuniverse to function. Please make sure it is installed before continuing.
Step 1: Installing the App
Make sure you're in the virtual environment (venv) of your Alliance Auth installation. Then install the latest version:
pip install aa-sov-timer
Step 2: Update Your AA Settings
Configure your AA settings (local.py
) as follows:
- Add
'eveuniverse',
toINSTALLED_APPS
- Add
'sovtimer',
toINSTALLED_APPS
Restart your supervisor
Step 3: Finalizing the Installation
Copy static files and run migrations
python manage.py collectstatic
python manage.py migrate
Step 4: Preload Eve Universe Data
AA Sovereignty Timer uses Eve Universe data to map IDs to names for solar systems, regions and constellations. So you need to preload some data from ESI once. If you already have run this command, you can skip this step.
python manage.py eveuniverse_load_data map
python manage.py sovtimer_load_initial_data
Both commands might take a moment or two, so be patient ...
Step 5: Setting up Permission
Now you can set up permissions in Alliance Auth for your users.
Add sovtimer | Sovereignty Timer | Can access the Sovereignty Timer module
to
the states and/or groups you would like to have access.
Step 6: Keep Campaigns Updated
Add the following scheduled task to your local.py
. One done, restart your supervisor.
# AA Sovereignty Timer - Run sovereignty related updates every 30 seconds
CELERYBEAT_SCHEDULE["sovtimer.tasks.run_sov_campaign_updates"] = {
"task": "sovtimer.tasks.run_sov_campaign_updates",
"schedule": 30.0,
}
Now your system is updating the sovereignty campaigns every 30 seconds.
Updating
To update your existing installation of AA Sovereignty Timer, first enable your virtual environment.
Then run the following commands from your AA project directory (the one that
contains manage.py
).
pip install -U aa-sov-timer
python manage.py collectstatic
python manage.py migrate
Finally, restart your AA supervisor services.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aa_sov_timer-1.10.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ba2d64c4addedc58f3341ec3195707da98a185cd7cd015271dc6c275471fd91 |
|
MD5 | 2a297da2577aaaf4b7ca90af11d91710 |
|
BLAKE2b-256 | f7bde07fc93b869362dd880406522c08d4b94600c7c18d325ccb7fe9e96674f6 |