diff --git a/docs/Writerside/kc.tree b/docs/Writerside/kc.tree
index f1201aa..22d6627 100644
--- a/docs/Writerside/kc.tree
+++ b/docs/Writerside/kc.tree
@@ -6,7 +6,8 @@
start-page="Overview.md">
-
+
+
\ No newline at end of file
diff --git a/docs/Writerside/topics/Getting-started.md b/docs/Writerside/topics/Getting-started.md
new file mode 100644
index 0000000..613a7ba
--- /dev/null
+++ b/docs/Writerside/topics/Getting-started.md
@@ -0,0 +1,15 @@
+# Getting started
+
+Knight Crawler is provided as an all-in-one solution. This means that you can get started with very little setup.
+
+In its initial state Knight Crawler will only work on the machine that you host it on, and will not be accessible on
+your local network or from the internet. This is a Stremio limitation ([read Stremio's stance here](https://github.com/Stremio/stremio-features/issues/687)) and is beyond our control. We provide a guide
+how to make Knight Crawler accessible from your local network or the internet [here]().
+
+## Before you start
+
+Make sure that you have:
+- A place to host Knight Crawler
+- [Docker](https://docs.docker.com/get-docker/) and [Compose](https://docs.docker.com/compose/install/) installed
+- A [GitHub](https://github.com/) account _(optional)_
+
diff --git a/docs/Writerside/topics/How-to.md b/docs/Writerside/topics/How-to.md
deleted file mode 100644
index 04236f6..0000000
--- a/docs/Writerside/topics/How-to.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# How to
-
-A How-to article is an action-oriented type of document.
-It explains how to perform a specific task or solve a problem, and usually contains a sequence of steps.
-Start with a short introductory paragraph that explains what users will accomplish by following this procedure,
-what they need to perform it for, or define the target audience of the doc.
-
-> **Highlight important information**
->
-> You can change the element to *tip* or *warning* by renaming the style attribute below.
->
-{style="note"}
-
-## Before you start
-
-It is good practice to list the prerequisites that are required or recommended.
-
-Make sure that:
-- First prerequisite
-- Second prerequisite
-
-## How to perform a task
-
-Some introductory information.
-
-1. Step with a code block
-
- ```bash
- run this --that
- ```
-
-2. Step with a [link](https://www.jetbrains.com)
-
-3. Step with a list.
- - List item
- - List item
- - List item
\ No newline at end of file
diff --git a/docs/Writerside/topics/Run-Knight-Crawler.md b/docs/Writerside/topics/Run-Knight-Crawler.md
new file mode 100644
index 0000000..4ead583
--- /dev/null
+++ b/docs/Writerside/topics/Run-Knight-Crawler.md
@@ -0,0 +1,21 @@
+# Run Knight Crawler
+
+To run Knight Crawler you need two files, both can be found in the [deployment/docker](https://github.com/Gabisonfire/knightcrawler/tree/master/deployment/docker)
+directory on GitHub:
+
+- deployment/docker/.env.example
+
+- deployment/docker/docker-compose.yaml.
+
+For this guide I will be placing them in a directory on my home drive ~/knightcrawler.
+
+Rename the .env.example file to be .env
+
+```
+~/
+└── knightcrawler/
+ ├── .env
+ └── docker-compose.yaml
+```
+
+Before we start the services, we need to
\ No newline at end of file