Browse Apps

Fittings

A simple fittings and doctrine management application.


Fittings

pypi latest version python versions django versions license

A simple fittings and doctrine management app for allianceauth.

Contents

Overview

This plugin serves as a replacement for the now defunct fleet-up service integration. It allows you to create and manage ship fits and doctrines all in a central location for your members to browse.

Key Features

Fittings offers the following features:

  • Support for importing fittings using the EFT format.
  • Support for pulling fits from ESI Coming Soon
  • Support for exporting fits as EFT format.
  • Support for saving fits to EVE via ESI.
  • Support for copying fits for use with Buy All.
  • Categorization of your fittings and doctrines to keep things organized and easy to manage.
  • Access to categories can be restricted to specific groups.
  • Tracks changes to module names.
  • AA-Discordbot Integration for searching/posting fits to discord

Screenshots

Dashboard/Doctrine List

dashboard/doctrine list

Add Fitting

add fitting

Fitting List

fitting list

View Fitting

view fitting

Add Doctrine

add doctrine

View Doctrine

view doctrine

Add a Category

add category

View all Categories

view all categories

View a Category

view category

Installation

0. Check your MariaDB version

Though AllianceAuth and most of the community plugins available for it work just fine on MariaDB versions in the 10.3 and 10.4 range, this plugin requires version 10.5 or greater.

For instructions on installing newer versions of MariaDB please refer to their documentation here

1. Install App

Install the app into your allianceauth virtual environment via PIP.

pip install fittings

While the AA-Discordbot cog is included with the fittings module, if it is not already installed you can install it along with fittings by using the following command instead (doing so will also ensure the right version is installed if you already have it):

pip install fittings[discordbot]

2. Configure AA settings

Configure your AA settings (local.py) as follows:

  • Modify INSTALLED_APPS to include the following entries
INSTALLED_APPS += [
    # ...
    "eve_sde",  # Only if not already added for another app
    "fittings",
    # ...
]

# This line right below the `INSTALLED_APPS` list, and only if not already added for another app
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPS
  • Add the Scheduled Tasks
if "eve_sde" in INSTALLED_APPS:
    # Run at 12:00 UTC each day
    CELERYBEAT_SCHEDULE["EVE SDE :: Check for SDE Updates"] = {
        "task": "eve_sde.tasks.check_for_sde_updates",
        "schedule": crontab(minute="0", hour="12"),
    }

3. Finalize Install

Run migrations, copy static files and populate SDE data.

python manage.py migrate
python manage.py collectstatic
python manage.py esde_load_sde

Restart your supervisor tasks.

Updating

To update your existing installation of Fittings first enable your virtual environment.

Then run the following commands from your allianceauth project directory (the one that contains manage.py).

pip install -U fittings

python manage.py migrate
python manage.py collectstatic

Lastly, restart your supervisor tasks.

Note: Be sure to follow any version specific update instructions as well. These instructions can be found on the Tags page for this repository.

Settings

Setting Default Description
FITTINGS_AADISCORDBOT_INTEGRATION True Enables the AADiscordbot cog

Permissions

Permission Description
fitting.access_fittings This permission gives users access to the plugin.
doctrine.manage User can add/delete ship fits and doctrines.

Active Developers

No reviews yet...

Python Requirements

Required Python packages to be installed and other Python requirement.

App Dependencies


Required apps:

Used by apps:

Dependencies to other apps registered in this app directory.

Classifiers

  • Environment :: Web Environment
  • Framework :: Django
  • Framework :: Django :: 3.2
  • Framework :: Django :: 4.0
  • Framework :: Django :: 4.1
  • Intended Audience :: Developers
  • License :: OSI Approved :: GNU General Public License v3 (GPLv3)
  • Operating System :: POSIX :: Linux
  • Programming Language :: Python
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Topic :: Internet :: WWW/HTTP
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content

Version

2.3.0

License

GPLv3

Homepage

  https://gitlab.com/colcrunch/fittings

PyPI

  https://pypi.org/project/fittings/

Last updated

2 weeks ago

First published

6 years, 3 months ago

Category

Plugin Apps

Rating

-

Authors

Col Crunch

Maintainers

Col Crunch Col Crunch

Please login to see more options.