diff --git a/docs/docs/getting-started.mdx b/docs/docs/getting-started.mdx
index bb172bd..31cb199 100755
--- a/docs/docs/getting-started.mdx
+++ b/docs/docs/getting-started.mdx
@@ -6,16 +6,16 @@ keywords: [install, configuration]
description: Getting started with hyperglass
---
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
+import Tabs from "@theme/Tabs";
+import TabItem from "@theme/TabItem";
## Automatic installation
If your system runs on:
-- Ubuntu Linux
-- ~~CentOS/Red Had Linux~~
-- macOS (requires [homebrew](https://brew.sh))
+- Ubuntu Linux
+- ~~CentOS/Red Had Linux~~
+- macOS (requires [homebrew](https://brew.sh))
You should be able to proceed with the automatic installation:
@@ -32,6 +32,7 @@ You should be very worried when someone asks you to do what I just did. D
### System Dependencies
#### Python
+
hyperglass is written in Python 3 and requires Python version 3.6 as a minimum dependency.
If you're confident upgrading your system's version of Python won't break your system (many Linux operating systems rely heavily on Python for package management and other system functions), you can install Python 3.6:
@@ -45,7 +46,7 @@ If you're confident upgrading your system's version of Python won't break your s
```shell-session
-$ sudo apt install -y python3.6-dev python3-pip
+$ sudo apt install -y python3.6-dev python3-pip redis-server
```
@@ -53,8 +54,8 @@ $ sudo apt install -y python3.6-dev python3-pip
```shell-session
-$ sudo yum install centos-release-scl
-$ sudo yum install rh-python36
+$ sudo yum install centos-release-scl python3-devel rh-python36 redis
+$ sudo scl enable rh-python36
```
@@ -69,6 +70,7 @@ Python 3.6.9
```
#### Other Dependencies
+
The hyperglass UI is written in [ReactJS](https://reactjs.org/). As such, some Javascript dependencies are required. hyperglass also relies on [Redis](https://redis.io/) for caching purposes.
Global Settings |
+| Parameter | Type | Default | Description |
+| :-------- | :-----: | :---------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `enable` | Boolean | `true` | Enable or disable the display of an external link |
+| `title` | String | `'PeeringDB'` | Link title/label |
+| `url` | String | `'https://www.peeringdb.com/asn/{primary_asn}'` | Target URL. `{primary_asn}` will be replaced with the `primary_asn` value from Global Settings |
## `logo`