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
- Filter Skills for each Character
- No Active Training hint
Upcoming
- Notififcation System
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 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
'eveuniverse',
toINSTALLED_APPS
- Add
'memberaudit',
toINSTALLED_APPS
- 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"),
}
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. |
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
-
SKILLFARM_APP_NAME:
"YOURNAME"
- Set the name of the APP -
SKILLFARM_LOGGER_USE:
True / False
- Set to use own Logger File
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.1.3.tar.gz
.
File metadata
- Download URL: aa_skillfarm-0.1.3.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 006eab1fde013acd2b057cb1c98db396841ebbef9056fc111fee04fd8c3918b1 |
|
MD5 | f0ab4bbd37eebd75480985b462504ae7 |
|
BLAKE2b-256 | c46aefc9bcb540726fd9510c017640ff5a285aa3a755f71a483e0815b9eed398 |
File details
Details for the file aa_skillfarm-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: aa_skillfarm-0.1.3-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.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2997b4cd7631734ff7bc0b203ffa801e81526d3cf0a9fe98a2d8da877b15de2e |
|
MD5 | e319513a0fb17cb406caed412313f504 |
|
BLAKE2b-256 | ed2e440ffbcc7c6d9ffa91451d4ad49293b859296b5d38a8adda827255113ae4 |