A Skillfarm Tracker Module for Alliance Auth
Project description
Skillfarm module for AllianceAuth.
The Skillfarm Tracker Module for Alliance Auth tracks skill queues, sends notifications if skills finished and highlights them, making skill management easier for Skillfarms.
Features
- Graphical Design
- Characters Overview
- Skillfarm Information Sheet
- Filtered Skill Queue
- Filtered Skills
- Highlight finished Skills
- No Active Training hint
- Filter Skills for each Character
- Notification System
- Enable/Disable Characters
Installation
[!NOTE] AA Skillfarm needs at least Alliance Auth v4.0.0 Please make sure to update your Alliance Auth before you install this APP
Step 0 - Check dependencies are installed
- Skillfarm needs the app django-eveuniverse to function. Please make sure it is installed.
Step 1 - Install the Package
Make sure you're in your virtual environment (venv) of your Alliance Auth then install the pakage.
pip install aa-skillfarm
Step 2 - Configure Alliance Auth
Configure your Alliance Auth settings (local.py
) as follows:
- Add
'skillfarm',
toINSTALLED_APPS
Step 3 - Add the Scheduled Tasks
To set up the Scheduled Tasks add following code to your local.py
CELERYBEAT_SCHEDULE["skillfarm_update_all_skillfarm"] = {
"task": "skillfarm.tasks.update_all_skillfarm",
"schedule": crontab(minute=0, hour="*/1"),
}
CELERYBEAT_SCHEDULE["skillfarm_check_skillfarm_notifications"] = {
"task": "skillfarm.tasks.check_skillfarm_notifications",
"schedule": crontab(minute=0, hour="*/12"),
}
Step 4 - Migration to AA
python manage.py collectstatic
python manage.py migrate
Step 5 - Setting up Permissions
With the Following IDs you can set up the permissions for the Skillfarm
ID | Description | |
---|---|---|
basic_access |
Can access the Skillfarm module | All Members with the Permission can access the Skillfarm. |
corp_access |
Has access to all characters in the corporation. | Can see all Skillfarm Characters from own Corporation. |
admin_access |
Has access to all characters | Can see all Skillfarm Characters. |
Step 6 - (Optional) Setting up Compatibilies
The Following Settings can be setting up in the local.py
Setting Name | Descriptioon | Default |
---|---|---|
SKILLFARM_APP_NAME |
Set the name of the APP | "Skillfarm" |
SKILLFARM_LOGGER_USE |
Set to use own Logger File True/False |
False |
SKILLFARM_STALE_STATUS |
Set the Stale Status for Skillfarm Character in hours | 3 |
SKILLFARM_NOTIFICATION_COOLDOWN |
Number of days to wait before resending a notification | 3 |
If you set up SKILLFARM_LOGGER_USE to True
you need to add the following code below:
LOGGING_SKILLFARM = {
"handlers": {
"skillfarm_file": {
"level": "INFO",
"class": "logging.handlers.RotatingFileHandler",
"filename": os.path.join(BASE_DIR, "log/skillfarm.log"),
"formatter": "verbose",
"maxBytes": 1024 * 1024 * 5,
"backupCount": 5,
},
},
"loggers": {
"skillfarm": {
"handlers": ["skillfarm_file", "console"],
"level": "INFO",
},
},
}
LOGGING["handlers"].update(LOGGING_SKILLFARM["handlers"])
LOGGING["loggers"].update(LOGGING_SKILLFARM["loggers"])
Highlights
[!NOTE] Contributing You want to improve the project? Just Make a Pull Request with the Guidelines. We Using pre-commit
Project details
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
File details
Details for the file aa_skillfarm-0.3.1.tar.gz
.
File metadata
- Download URL: aa_skillfarm-0.3.1.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b52d761cff09f2d84796d897e8a615f5ff6a7869b4079565e26cfe919ce4c2b |
|
MD5 | f9d76666055d30258b2bfbae2d2c1818 |
|
BLAKE2b-256 | edbb770809f70e9cff9ace95201a6b5f7372109124ea6604ad3bd0b4ac80580d |
File details
Details for the file aa_skillfarm-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: aa_skillfarm-0.3.1-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe94e40754ca433a364115650a37c1a2f5575f2b78fda80bf6861ff614d7471d |
|
MD5 | 0ad2e3c8f008e3163d97a1e7d445be2e |
|
BLAKE2b-256 | c012f987a8d89f0bcc41d1b5d88c37514fa85b9c47be7ecb5c6b8a17e4635436 |