diff --git a/docs/features/services/discourse.md b/docs/features/services/discourse.md index ad24d860..41f6a84c 100644 --- a/docs/features/services/discourse.md +++ b/docs/features/services/discourse.md @@ -8,11 +8,11 @@ In your auth project's settings file, do the following: - Append the following to your local.py settings file: ```python - # Discourse Configuration - DISCOURSE_URL = '' - DISCOURSE_API_USERNAME = '' - DISCOURSE_API_KEY = '' - DISCOURSE_SSO_SECRET = '' +# Discourse Configuration +DISCOURSE_URL = '' +DISCOURSE_API_USERNAME = '' +DISCOURSE_API_KEY = '' +DISCOURSE_SSO_SECRET = '' ``` ## Install Docker diff --git a/docs/features/services/openfire.md b/docs/features/services/openfire.md index 7627c439..7268edc4 100644 --- a/docs/features/services/openfire.md +++ b/docs/features/services/openfire.md @@ -8,15 +8,15 @@ - Append the following to your auth project's settings file: ```python - # Jabber Configuration - JABBER_URL = "" - JABBER_PORT = 5223 - JABBER_SERVER = "" - OPENFIRE_ADDRESS = "" - OPENFIRE_SECRET_KEY = "" - BROADCAST_USER = "" - BROADCAST_USER_PASSWORD = "" - BROADCAST_SERVICE_NAME = "broadcast" +# Jabber Configuration +JABBER_URL = "" +JABBER_PORT = 5223 +JABBER_SERVER = "" +OPENFIRE_ADDRESS = "" +OPENFIRE_SECRET_KEY = "" +BROADCAST_USER = "" +BROADCAST_USER_PASSWORD = "" +BROADCAST_SERVICE_NAME = "broadcast" ``` ## Dependencies diff --git a/docs/features/services/phpbb3.md b/docs/features/services/phpbb3.md index 762e8c11..d331bb1e 100644 --- a/docs/features/services/phpbb3.md +++ b/docs/features/services/phpbb3.md @@ -12,16 +12,16 @@ In your auth project's settings file, do the following: - Append the following to the bottom of the settings file: ```python - # PHPBB3 Configuration - PHPBB3_URL = '' - DATABASES['phpbb3'] = { - 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'alliance_forum', - 'USER': 'allianceserver-phpbb3', - 'PASSWORD': 'password', - 'HOST': '127.0.0.1', - 'PORT': '3306', - } +# PHPBB3 Configuration +PHPBB3_URL = '' +DATABASES['phpbb3'] = { + 'ENGINE': 'django.db.backends.mysql', + 'NAME': 'alliance_forum', + 'USER': 'allianceserver-phpbb3', + 'PASSWORD': 'password', + 'HOST': '127.0.0.1', + 'PORT': '3306', +} ``` ## Setup diff --git a/docs/features/services/smf.md b/docs/features/services/smf.md index 0ab21a5d..3068d19a 100644 --- a/docs/features/services/smf.md +++ b/docs/features/services/smf.md @@ -12,16 +12,16 @@ In your auth project's settings file, do the following: - Append the following to the bottom of the settings file: ```python - # SMF Configuration - SMF_URL = '' - DATABASES['smf'] = { - 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'alliance_smf', - 'USER': 'allianceserver-smf', - 'PASSWORD': 'password', - 'HOST': '127.0.0.1', - 'PORT': '3306', - } +# SMF Configuration +SMF_URL = '' +DATABASES['smf'] = { + 'ENGINE': 'django.db.backends.mysql', + 'NAME': 'alliance_smf', + 'USER': 'allianceserver-smf', + 'PASSWORD': 'password', + 'HOST': '127.0.0.1', + 'PORT': '3306', +} ``` ## Setup diff --git a/docs/features/services/teamspeak3.md b/docs/features/services/teamspeak3.md index 3ecd0807..f72db789 100644 --- a/docs/features/services/teamspeak3.md +++ b/docs/features/services/teamspeak3.md @@ -14,18 +14,18 @@ In your auth project's settings file, do the following: - Append the following to the bottom of the settings file: ```python - # Teamspeak3 Configuration - TEAMSPEAK3_SERVER_IP = '127.0.0.1' - TEAMSPEAK3_SERVER_PORT = 10011 - TEAMSPEAK3_SERVERQUERY_USER = 'serveradmin' - TEAMSPEAK3_SERVERQUERY_PASSWORD = '' - TEAMSPEAK3_VIRTUAL_SERVER = 1 - TEAMSPEAK3_PUBLIC_URL = '' +# Teamspeak3 Configuration +TEAMSPEAK3_SERVER_IP = '127.0.0.1' +TEAMSPEAK3_SERVER_PORT = 10011 +TEAMSPEAK3_SERVERQUERY_USER = 'serveradmin' +TEAMSPEAK3_SERVERQUERY_PASSWORD = '' +TEAMSPEAK3_VIRTUAL_SERVER = 1 +TEAMSPEAK3_PUBLIC_URL = '' - CELERYBEAT_SCHEDULE['run_ts3_group_update'] = { - 'task': 'allianceauth.services.modules.teamspeak3.tasks.run_ts3_group_update', - 'schedule': crontab(minute='*/30'), - } +CELERYBEAT_SCHEDULE['run_ts3_group_update'] = { + 'task': 'allianceauth.services.modules.teamspeak3.tasks.run_ts3_group_update', + 'schedule': crontab(minute='*/30'), +} ``` ### Download Installer diff --git a/docs/features/services/xenforo.md b/docs/features/services/xenforo.md index 2a770848..e3aef6ca 100644 --- a/docs/features/services/xenforo.md +++ b/docs/features/services/xenforo.md @@ -9,10 +9,10 @@ In your auth project's settings file, do the following: - Append the following to your local.py settings file: ```python - # XenForo Configuration - XENFORO_ENDPOINT = 'example.com/api.php' - XENFORO_DEFAULT_GROUP = 0 - XENFORO_APIKEY = 'yourapikey' +# XenForo Configuration +XENFORO_ENDPOINT = 'example.com/api.php' +XENFORO_DEFAULT_GROUP = 0 +XENFORO_APIKEY = 'yourapikey' ``` ## XenAPI