mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-11 21:40:17 +02:00
Gunicorn needs to be run whilist in the folder for context, folder path is not enough Correct static path, note to check nginx user Capitalization of services and small typos Service examples updated to their latest versions and download links Expanded /var/www chowns for Nginx and Apache examples Add in a troubleshooting note for no images being displayed (permissions issue) and gunicorn not execting (file path context) Correct formatting. Reword a few parts. Remove "new in 1.15".
19 lines
760 B
Markdown
19 lines
760 B
Markdown
# Fleetup
|
|
|
|
## Installation
|
|
|
|
Add `'allianceauth.fleetup',` to your auth project's `INSTALLED_APPS` list.
|
|
|
|
Additional settings are required. Append the following settings to the end of your auth project's settings file and fill them out.
|
|
|
|
FLEETUP_APP_KEY = '' # The app key from http://fleet-up.com/Api/MyApps
|
|
FLEETUP_USER_ID = '' # The user id from http://fleet-up.com/Api/MyKeys
|
|
FLEETUP_API_ID = '' # The API id from http://fleet-up.com/Api/MyKeys
|
|
FLEETUP_GROUP_ID = '' # The id of the group you want to pull data from, see http://fleet-up.com/Api/Endpoints#groups_mygroupmemberships
|
|
|
|
Once filled out restart Gunicorn and Celery.
|
|
|
|
## Permissions
|
|
|
|
The Fleetup module is only visible to users with the `auth | user | view_fleeup` permission.
|