diff --git a/docs/features/corpstats.md b/docs/features/corpstats.md index 05ce1bf4..11e0127b 100644 --- a/docs/features/corpstats.md +++ b/docs/features/corpstats.md @@ -2,6 +2,14 @@ This module is used to check the registration status of corp members and to determine character relationships, being mains or alts. +## Installation + +Add `allianceauth.corputils` to your `INSTALLED_APPS` setting and run migrations. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.corputils'] + +Run migrations to complete installation. + ## Creating a Corp Stats Upon initial install, nothing will be visible. For every corp, a model will have to be created before data can be viewed. diff --git a/docs/features/fleetactivitytracking.md b/docs/features/fleetactivitytracking.md new file mode 100644 index 00000000..7fc0342f --- /dev/null +++ b/docs/features/fleetactivitytracking.md @@ -0,0 +1,9 @@ +# Fleet Activity Tracking + +## Installation + +Add `allianceauth.fleetactivitytracking` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.fleetactivitytracking'] + +Run migrations to complete installation. \ No newline at end of file diff --git a/docs/features/fleetup.md b/docs/features/fleetup.md new file mode 100644 index 00000000..4170a93d --- /dev/null +++ b/docs/features/fleetup.md @@ -0,0 +1,7 @@ +# Fleetup + +## Installation + +Add `allianceauth.fleetup` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.fleetup'] \ No newline at end of file diff --git a/docs/features/hrapplications.md b/docs/features/hrapplications.md index ff9028ea..53ab6f5a 100644 --- a/docs/features/hrapplications.md +++ b/docs/features/hrapplications.md @@ -1,5 +1,13 @@ # HR Applications +## Installation + +Add `allianceauth.hrapplications` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.hrapplications'] + +Run migrations to complete installation. + ## Management ### Creating Forms diff --git a/docs/features/index.md b/docs/features/index.md index 404dfbec..d80d1201 100644 --- a/docs/features/index.md +++ b/docs/features/index.md @@ -11,4 +11,9 @@ autogroups permissions_tool nameformats + fleetup + fleetactivitytracking + optimer + srp + timerboard ``` diff --git a/docs/features/optimer.md b/docs/features/optimer.md new file mode 100644 index 00000000..ddc96a16 --- /dev/null +++ b/docs/features/optimer.md @@ -0,0 +1,9 @@ +# Optimer + +## Installation + +Add `allianceauth.optimer` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.optimer'] + +Run migrations to complete installation. \ No newline at end of file diff --git a/docs/features/permissions_tool.md b/docs/features/permissions_tool.md index fb2f265d..424413ef 100644 --- a/docs/features/permissions_tool.md +++ b/docs/features/permissions_tool.md @@ -7,6 +7,14 @@ Access to most of Alliance Auth's features are controlled by Django's permissions system. In order to help you secure your services, Alliance Auth provides a permissions auditing tool. +## Installation + +Add `allianceauth.permissions_tool` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.permissions_tool'] + +## Usage + ### Access In order to grant users access to the permissions auditing tool they will need to be granted the `permissions_tool.audit_permissions` permission or be a superuser. diff --git a/docs/features/srp.md b/docs/features/srp.md new file mode 100644 index 00000000..5e34a122 --- /dev/null +++ b/docs/features/srp.md @@ -0,0 +1,9 @@ +# SRP + +## Installation + +Add `allianceauth.srp` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.srp'] + +Run migrations to complete installation. \ No newline at end of file diff --git a/docs/features/timerboard.md b/docs/features/timerboard.md new file mode 100644 index 00000000..237d1cb2 --- /dev/null +++ b/docs/features/timerboard.md @@ -0,0 +1,9 @@ +# Timerboard + +## Installation + +Add `allianceauth.timerboard` to your `INSTALLED_APPS` setting. In `myauth/settings/local.py`: + + INSTALLED_APPS += ['allianceauth.timerboard'] + +Run migrations to complete installation. \ No newline at end of file