Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
AA module for Metenox management.
This module aims to be specific for Metenox management.
Metenox 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)
Metenox requires the Alliance Auth module aa-moonmining to function. The moon database and other utilities are imported from this module.
Make sure you are in the virtual environment (venv) of your Alliance Auth installation. Then install the newest release from PyPI:
pip install aa-metenox
Configure your Auth settings (local.py
) as follows:
'metenox'
to INSTALLED_APPS
CELERYBEAT_SCHEDULE['metenox_update_prices'] = {
'task': 'metenox.tasks.update_prices',
'schedule': crontab(minute='0', hour='*/12'),
}
CELERYBEAT_SCHEDULE['metenox_update_moons_from_moonmining'] = {
'task': 'metenox.tasks.update_moons_from_moonmining',
'schedule': crontab(minute='0', hour='*/3'),
}
CELERYBEAT_SCHEDULE['metenox_update_all_holdings'] = {
'task': 'metenox.tasks.update_all_holdings',
'schedule': crontab(minute='0', hour='*/1')
}
CELERYBEAT_SCHEDULE['metenox_send_daily_analytics'] = {
'task': 'metenox.tasks.send_daily_analytics',
'schedule': crontab(minute='0', hour='5')
}
Note: the delay of the update_moons_from_moonmining
task is intentionally long.
If you know moons will be added in your database often you can reduce it for them to appear faster.
You can even not use this task at all and only update moon scans with the metenox_update_moons_from_moonmining
command.
For the send_daily_analytics
refer to analytics
Optional: Alter the application settings. The list can be found in Settings
Run migrations & copy static files
python manage.py migrate
python manage.py collectstatic --noinput
Restart your supervisor services for Auth.
Run the following management command to load all moon materials from ESI. This only has to be run once.
python manage.py metenox_load_eve
Wait until the command is finished before continuing.
First load the data from the moonmining module using
python manage.py metenox_update_moons_from_moonmining
Once it's done update their prices with
python manage.py metenox_update_all_prices
This application will send anonymous analytic data using Alliance Auth built-in analytics module.
If you wish to disable the analytics for this application you can easily do so by removing the metenox_send_daily_analytics
task.
The collected analytics are
Permissions overview.
Name | Description |
---|---|
view_moons | This permissions allow to see all scanned moons of the database |
view_metenoxes | This permissions allow to add owners and see all metenoxes from the owners corporations |
corporation_manager | This permission allows to add webhooks to corporations and edit when a corporation should get fuel pings |
auditor | This permission allows to see all metenoxes regardless of having an owner in the corporation |
Users need to have at least view_moons
or view_metenoxes
to be able to have any interactions with the application.
For the permissions corporation_manager
and auditor
to work properly the user needs to also have the view_metenoxes
permission.
List of settings that can be modified for the application.
You can alter them by adding them in your local.py
file.
Name | Description | Default |
---|---|---|
METENOX_ADMIN_NOTIFICATIONS_ENABLE | Whether admins will get notifications about important events like when someone adds a new owner. | True |
METENOX_MOON_MATERIAL_BAY_CAPACITY | Volume of the Metenox's Moon material Output Bay. Used to calculate how long a metenox takes before being full. This value shouldn't be edited | 500_000 |
METENOX_HOURLY_HARVEST_VOLUME | Hourly volume in m3 that a metenox will harvest. This value shouldn't be edited | 30_000 |
METENOX_HARVEST_REPROCESS_YIELD | Yield at which the metenox reprocess the harvested materials. This value shouldn't be edited | 0.40 |
METENOX_FUEL_BLOCKS_PER_HOUR | How many fuel blocks a running Metenox consumes every hours. This value shouldn't be edited | 5 |
METENOX_MAGMATIC_GASES_PER_HOUR | How many magmatic gases a running Metenox consumes every hours. This value shouldn't be edited | 88 |
The following commands can be used when running the module:
Name | Description |
---|---|
metenox_load_eve | Loads up the data from eveuniverse this command should only be ran once |
metenox_update_all_holdings | Fetches all holdings in the database and updates their metenoxes with the ESI |
metenox_update_all_prices | Fetches new prices from fuzzwork and update the price of all known moons |
metenox_update_moons_from_moonmining | Checks the moonmining application and adds all missing moons |
FAQs
Metenox app config
We found that aa-metenox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.