From 00b5fb3de94bb90c37be1e91ddbf035fe30c38ba Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Wed, 21 Aug 2019 08:27:59 -0500 Subject: [PATCH] Updated docs --- GeoffreyApp/docs/source/django_settings.rst | 24 ++++++++++----------- GeoffreyApp/docs/source/getting_started.rst | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/GeoffreyApp/docs/source/django_settings.rst b/GeoffreyApp/docs/source/django_settings.rst index ddff182..a2b3d4d 100644 --- a/GeoffreyApp/docs/source/django_settings.rst +++ b/GeoffreyApp/docs/source/django_settings.rst @@ -6,28 +6,28 @@ Django Settings Geoffrey App Settings ********************* -``GEOFFREY_NORTH_TUNNEL`` - North Nether tunnel name +``GEOFFREY_NORTH_TUNNEL`` - String: North Nether tunnel name -``GEOFFREY_EAST_TUNNEL`` - East Nether tunnel name +``GEOFFREY_EAST_TUNNEL`` - String: East Nether tunnel name -``GEOFFREY_SOUTH_TUNNEL`` - South Nether tunnel name +``GEOFFREY_SOUTH_TUNNEL`` - String: South Nether tunnel name -``GEOFFREY_WEST_TUNNEL`` - West Nether tunnel name +``GEOFFREY_WEST_TUNNEL`` - String: West Nether tunnel name -``GEOFFREY_DYNMAP_BASE_URL`` - Dynmap URL +``GEOFFREY_DYNMAP_BASE_URL`` - String: Dynmap URL -``GEOFFREY_DYNMAP_WORLD_NAME`` - Overworld name for dynmap +``GEOFFREY_DYNMAP_WORLD_NAME`` - String: Overworld name for dynmap -``GEOFFREY_MCM_API_TOKEN`` - Token for accessing the MCM API +``GEOFFREY_MCM_API_TOKEN`` - String: Token for accessing the MCM API -``GEOFFREY_MCM_BASE_URL`` - MCM base link +``GEOFFREY_MCM_BASE_URL`` - String: MCM base link Geoffrey Discord Bot Settings ***************************** -``GEOFFREY_BOT_PREFIX`` - Discord bot prefix +``GEOFFREY_BOT_PREFIX`` - Character: Discord bot prefix -``GEOFFREY_BOT_ERROR_USERS`` - List of Discord user IDs to send a PM on an error +``GEOFFREY_BOT_ERROR_USERS`` - List of Strings: Discord user IDs to send a PM on an error -``GEOFFREY_BOT_MOD_RANKS`` - List of Discord rank IDs to grant mod privileges to +``GEOFFREY_BOT_MOD_RANK`` - List of Strings: Rank IDs to grant mod privileges to -``GEOFFREY_BOT_STATUS`` - Default bot playing stats \ No newline at end of file +``GEOFFREY_BOT_STATUS`` - String: Default bot playing stats \ No newline at end of file diff --git a/GeoffreyApp/docs/source/getting_started.rst b/GeoffreyApp/docs/source/getting_started.rst index 6217bd1..90002f7 100644 --- a/GeoffreyApp/docs/source/getting_started.rst +++ b/GeoffreyApp/docs/source/getting_started.rst @@ -26,7 +26,7 @@ Setup ##### .. Note:: Geoffrey is a Django application. To install Geoffrey, you need to have a Django site already setup instructions to do that can be found `here`_ -.. _here: https://docs.djangoproject.com/en/2.2/intro/tutorial01/ +.. _here: https://docs.djangoproject.com/en/2.1/intro/tutorial01/ Installing GeoffreyApp From Source **********************************