diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 0000000000..364fdec1aa
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1 @@
+public/
diff --git a/docs/archetypes/default.md b/docs/archetypes/default.md
new file mode 100644
index 0000000000..4e777bee13
--- /dev/null
+++ b/docs/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .TranslationBaseName "-" " " | title }}"
+date: {{ .Date }}
+anchor: "{{ replace .TranslationBaseName "-" " " | title | urlize }}"
+weight:
+---
diff --git a/docs/config.toml b/docs/config.toml
new file mode 100644
index 0000000000..82d4905f15
--- /dev/null
+++ b/docs/config.toml
@@ -0,0 +1,18 @@
+baseURL = "https://owncloud.github.io/ocis-accounts/"
+languageCode = "en-us"
+title = "ownCloud Infinite Scale: Accounts"
+pygmentsUseClasses = true
+
+disableKinds = ["taxonomy", "taxonomyTerm", "RSS", "sitemap"]
+
+[blackfriday]
+ angledQuotes = true
+ fractions = false
+ plainIDAnchors = true
+ smartlists = true
+ extensions = ["hardLineBreak"]
+
+[params]
+ author = "ownCloud GmbH"
+ description = "Serve Accounbts API for oCIS"
+ keywords = "reva, ocis, accounts"
diff --git a/docs/content/about.md b/docs/content/about.md
new file mode 100644
index 0000000000..2f6241567b
--- /dev/null
+++ b/docs/content/about.md
@@ -0,0 +1,8 @@
+---
+title: "About"
+date: 2020-02-07T00:00:00+00:00
+anchor: "about"
+weight: 10
+---
+
+This service provides an inter-operable accounts service that operates on the filesystem by default.
diff --git a/docs/content/building.md b/docs/content/building.md
new file mode 100644
index 0000000000..0cf2186527
--- /dev/null
+++ b/docs/content/building.md
@@ -0,0 +1,24 @@
+---
+title: "Building"
+date: 2018-05-02T00:00:00+00:00
+anchor: "building"
+weight: 30
+---
+
+As this project is built with Go, so you need to install that first. The installation of Go is out of the scope of this document, please follow the official documentation for [Go](https://golang.org/doc/install), to build this project you have to install Go >= v1.13. After the installation of the required tools you need to get the sources:
+
+{{< highlight txt >}}
+git clone https://github.com/owncloud/ocis-accounts.git
+cd ocis-accounts
+{{< / highlight >}}
+
+All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`.
+
+### Backend
+
+{{< highlight txt >}}
+make generate
+make build
+{{< / highlight >}}
+
+Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-accounts -h` to see all available options and subcommands.
diff --git a/docs/content/getting-started.md b/docs/content/getting-started.md
new file mode 100644
index 0000000000..795519fe32
--- /dev/null
+++ b/docs/content/getting-started.md
@@ -0,0 +1,63 @@
+---
+title: "Getting Started"
+date: 2018-05-02T00:00:00+00:00
+anchor: "getting-started"
+weight: 20
+---
+
+### Installation
+
+So far we are offering two different variants for the installation. You can choose between [Docker](https://www.docker.com/) or pre-built binaries which are stored on our download mirrors and GitHub releases. Maybe we will also provide system packages for the major distributions later if we see the need for it.
+
+#### Docker
+
+TBD
+
+#### Binaries
+
+TBD
+
+### Configuration
+
+We provide overall three different variants of configuration. The variant based on environment variables and commandline flags are split up into global values and command-specific values.
+
+#### Envrionment variables
+
+If you prefer to configure the service with environment variables you can see the available variables below.
+
+##### Server
+
+OCIS_ACCOUNTS_MANAGER
+: Enable sending traces, defaults to `filesystem`
+
+OCIS_ACCOUNTS_MOUNT_PATH
+: Mounting point for the accounts service when running on the filesystem as manager.
+
+OCIS_ACCOUNTS_NAME
+: Name of the accounts service. It will be part of the namespace.
+
+OCIS_ACCOUNTS_NAMESPACE
+: Namespace of the accounts service.
+
+OCIS_ACCOUNTS_ADDRESS
+: Endpoint for the grpc service endpoint.
+
+#### Commandline flags
+
+If you prefer to configure the service with commandline flags you can see the available variables below.
+
+#### Configuration file
+
+So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis-accounts/tree/master/pkg/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/accounts.yml`, `${HOME}/.ocis/accounts.yml` or `$(pwd)/config/accounts.yml`.
+
+### Usage
+
+The program provides a few sub-commands on execution. The available configuration methods have already been mentioned above. Generally you can always see a formated help output if you execute the binary via `ocis-accounts --help`.
+
+#### Server
+
+The server command is used to start the grpc server. For further help please execute:
+
+{{< highlight txt >}}
+ocis-accounts server --help
+{{< / highlight >}}
diff --git a/docs/layouts/_default/list.html b/docs/layouts/_default/list.html
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/docs/layouts/_default/single.html b/docs/layouts/_default/single.html
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/docs/layouts/index.html b/docs/layouts/index.html
new file mode 100644
index 0000000000..27db113acd
--- /dev/null
+++ b/docs/layouts/index.html
@@ -0,0 +1,57 @@
+
+
+
+